Module:Case

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

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


local p = {} --p stands for package

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

function p.uppercase_first_letter(frame)
	first_letter = string.sub(frame.args.link, 0, 1)
	rest_of_link = string.sub(frame.args.link, 1, string.len(frame.args.link))
    return "[[" .. frame.args.link .. "|" .. string.upper(first_letter) .. string.lower(rest_of_link) .. "]]"
end

return p