Editing
Module:Case
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
local p = {} --p stands for package langObject = mw.getLanguage('simple') local function has_value (tab, val) for index, value in ipairs(tab) do if langObject:lc(value) == langObject:lc(val) then return true end end return false end function p.title_case(frame) plain = false if frame.args.plain == "true" then plain = true end split = frame.args.split if split == "space" then split = " " end replace = split if frame.args.replace ~= "" then replace = frame.args.replace end parts = mw.text.split(frame.args.link, split, plain) lower = mw.text.split(frame.args.lower, ",", true) title = "" for i, part in pairs(parts) do if i > 1 and i < table.getn(parts) and has_value(lower, part) then title = title .. langObject:lc(part) .. replace else title = title .. langObject:ucfirst(langObject:lc(part)) .. replace end end if table.getn(parts) > 1 then title = string.sub(title, 0, string.len(title) - string.len(replace)) end if frame.args.nolink == "true" then return title end return "[[" .. frame.args.link .. "|" .. title .. "]]" end function p.uppercase_first_letter(frame) uc_first_letter = langObject:ucfirst(langObject:lc(frame.args.link)) if frame.args.nolink == "true" then return uc_first_letter end return "[[" .. frame.args.link .. "|" .. uc_first_letter .. "]]" end function p.lowercase(frame) lc = langObject:lc(frame.args.link) if frame.args.nolink == "true" then return lc end return "[[" .. frame.args.link .. "|" .. lc .. "]]" end return p
Summary:
Please note that all contributions to Heroes 3 wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Templates used on this page:
Template:L
(
edit
)
Template:T
(
edit
)
Template:U
(
edit
)
Module:Case
(
edit
)
Module:Case/doc
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Module
Discussion
English
Views
Read
Edit
View history
More
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information