Module:Format: Difference between revisions
Appearance
Created page with "local p = {} function p.uppercase(frame) local text = frame.args[1] or '' return text:upper() end function p.lowercase(frame) local text = frame.args[1] or '' return text:lower() end return p" |
(No difference)
|
Latest revision as of 05:34, 30 January 2025
Documentation for this module may be created at Module:Format/doc
local p = {}
function p.uppercase(frame)
local text = frame.args[1] or ''
return text:upper()
end
function p.lowercase(frame)
local text = frame.args[1] or ''
return text:lower()
end
return p