Module:Yesno: Difference between revisions
Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki..." |
m 1 revision imported: Category:Infobox |
||
(6 intermediate revisions by 4 users not shown) | |||
Line 13: | Line 13: | ||
or val == 'y' | or val == 'y' | ||
or val == 'true' | or val == 'true' | ||
or val == 't' | |||
or tonumber(val) == 1 | or tonumber(val) == 1 | ||
then | then | ||
Line 20: | Line 21: | ||
or val == 'n' | or val == 'n' | ||
or val == 'false' | or val == 'false' | ||
or val == 'f' | |||
or tonumber(val) == 0 | or tonumber(val) == 0 | ||
then | then |