Module:yesno: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

5 August 2023

  • curprev 23:4223:42, 5 August 2023Maria talk contribs 586 bytes +586 Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) val = type(val) == 'string' and val:lower() or val -- put in lower case if val == nil then return nil elseif val == false or val == 'no' or val == 'n' or val == 'false' or val == 'off' or tonumber(val) == 0 then return false elseif val == true or val == 'yes' or val == 'y' or val == '..."