Module:Yesno
จากวิกิพีเดีย สารานุกรมเสรี
แม่แบบนี้ได้ถูกล็อกมิให้แก้ไขอย่างสมบูรณ์ (ปูมการล็อก) เฉพาะผู้ดูแลระบบเท่านั้นที่แก้ไขได้ แต่คุณยังสามารถแสดงความคิดเห็น และเสนอการแก้ไขได้ในหน้าอภิปราย หรือแจ้งผู้ดูแลระบบเพื่อขอให้ยกเลิกการป้องกัน |

คุณอาจจะต้องการสร้างคู่มือการใช้งานของมอดูลนี้ ผู้เขียนสามารถทำการทดลองได้ที่กระบะทราย (สร้าง | คัดลอก) และชุดทดสอบ (สร้าง) ของมอดูลนี้ โปรดเพิ่มหมวดหมู่ไปที่หน้าย่อย /doc หน้าย่อยของมอดูลนี้ |
-- 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 == 'ใช่' or val == 'จริง' or val == 'ถูก' or tonumber(val) == 1 then return true elseif val == false or val == 'no' or val == 'n' or val == 'false' or val == 'ไม่' or val == 'ไม่ใช่' or val == 'เท็จ' or val == 'ผิด' or tonumber(val) == 0 then return false else return default end end