Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Editing Module:Gnoblin

From Deepest Lore
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.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 3: Line 3:
function p.processTitle(frame)
function p.processTitle(frame)
     local input = frame.args[1] or ""
     local input = frame.args[1] or ""
    -- Check if input already looks like a {{Title}} template
     if mw.ustring.match(input, "^%s*%{%{%s*[Tt]itle%s*[|}]") then
     if mw.ustring.match(input, "^%s*%{%{%s*[Tt]itle%s*[|}]") then
         return input
         return input
     end
     end
  -- Otherwise, expand the template properly
     return frame:expandTemplate{
     return frame:expandTemplate{
         title = "Title",
         title = "Title",
Line 33: Line 37:
     text = mw.ustring.gsub(text, "[%[%]]", "")
     text = mw.ustring.gsub(text, "[%[%]]", "")
     return text
     return text
end
function p.smartCategory(frame)
    local cat = frame.args[1]
    if not cat or cat == "" then
        return ""
    end
    -- Build category title
    local title = mw.title.new("Category:" .. cat)
    -- If category exists, use it
    if title and title.exists then
        return "[[Category:" .. cat .. "]]"
    end
    -- Fallback logic for elf subtypes
    if mw.ustring.match(cat:lower(), "elf") then
        return "[[Category:Elf]]"
    end
    -- Otherwise, no category
    return ""
end
end


return p
return p
Please note that all contributions to Deepest Lore 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 (see Deepest Lore:Copyrights for details). Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)