The Ysmir Collective
18.190.253.56
登录
搜索
命名空间
模块
讨论
查看
阅读
查看源代码
查看历史
查看“Module:Yesno”的源代码
来自The Ysmir Collective
←
Module:Yesno
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- 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 if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val == 'true' or val == 't' or val == 'on' or tonumber(val) == 1 then return true elseif val == false or val == 'no' or val == 'n' or val == 'false' or val == 'f' or val == 'off' or tonumber(val) == 0 then return false else return default end end
本页使用的模板:
Module:Yesno/doc
(
查看源代码
)
返回
Module:Yesno
。
导航菜单
导航
首页
所有角色
地点
派系&组织
短故事
匿名版
对照表
地名对照表
事件对照表
MediaWiki帮助
工具栏
上传文件
文件列表
分类
模版
创建模板
创建分类
特殊页面
最近更改