Module:Yesno:修订间差异
删除的内容 添加的内容
创建 Module:Yesno |
更新 Module:Yesno(zhwiki 版,支持 是/否/开/关 中文输入) |
||
第1行:
-- Function allowing for consistent treatment of boolean-like wikitext input.
-- It works similarly to the template {{yesno}}.
-- 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.
if val == nil then
elseif val == true
or val == 'yes'
or val == 'y'
or val == 't'
or val == 'on'
or val == '是'
or val == '开'
or val == '開'
or tonumber(val) == 1
then
elseif val == false
or val == 'no'
or val == 'n'
or val == 'f'
or val == 'off'
or val == '否'
or val == '关'
or val == '關'
or tonumber(val) == 0
then
else
return default
end
▲ return val
▲ if type(val) == 'string' then
▲ return true
▲ return false
▲ if val == 1 then return true end
▲ if val == 0 then return false end
▲ return default
end
| |||