Module:Yesno: Revision history

From Xenharmonic Reference

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.

16 December 2025

  • curprev 05:0505:05, 16 December 2025 Vector talk contribs 707 bytes +707 Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. 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 mw.ustring.lower(val) 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 == "..."