Jump to content

Module:PreserveCase

From RiskiPedia

Documentation for this module may be created at Module:PreserveCase/doc

local p = {}

function p.main( frame )
    -- Simply return the first argument unchanged to preserve its case
    return 'P:'..frame.args[1] or ''
end

return p