Module:Yesno: திருத்தங்களுக்கு இடையிலான வேறுபாடு
உள்ளடக்கம் நீக்கப்பட்டது உள்ளடக்கம் சேர்க்கப்பட்டது
use parent args again |
imported>Thiagalingam சி 35 திருத்தங்கள் இறக்குமதி செய்யப்பட்டன: Thiagalingam |
||
| (12 பயனர்களால் செய்யப்பட்ட 24 இடைப்பட்ட திருத்தங்கள் காட்டப்படவில்லை.) | |||
வரிசை 1:
-- Function allowing for consistent treatment of boolean-like wikitext input.
-- It works similarly to the template {{yesno}}.
return function
-- If your wiki uses non-ascii characters for any of "yes", "no", etc., you
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the
-- following line.
val = type(val) == 'string' and val:lower() or val
or val == 'true'
or val == 't'
or val == 'on'
end▼
then
return true
or val == 'no'
or val == 'false'
or val == 'f'
or val == 'off'
then
return false
return default
▲ if val == '' then
▲ elseif val == 'yes' then
▲ elseif val == 'no' then
▲ elseif val == 'y' then
▲ elseif val == 'n' then
▲ elseif tonumber(val) == 1 then
▲ elseif tonumber(val) == 0 then
▲ else
end
▲return p
| |||