Module:Case

From Heroes 3 wiki
Revision as of 21:33, 22 May 2021 by Imahero (talk | contribs) (fixed?)
Jump to navigation Jump to search

See usage on Script error: The function "title_case" does not exist., Template:U, and template:l.


local p = {} --p stands for package

function p.lowercase(frame)
    return "[[" .. frame.args.link .. "|" .. string.lower(frame.args.link) .. "]]"
end

langObject = mw.getLanguage( 'simple' )

function p.uppercase_first_letter(frame)
    return "[[" .. frame.args.link .. "|" .. langObject:ucfirst(frame.args.link) .. "]]"
end

return p