More actions
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 | |||
local p = {} | |||
--[[ | |||
addParentCategory(subcategory) | |||
Usage: {{#invoke:YourModuleName|addParentCategory|Woodland Elf}} | |||
Automatically adds the page to both the subcategory and its parent category 'Elf' | |||
]] | |||
function p.addParentCategory(frame) | |||
local subcat = frame.args[1] or "" | |||
subcat = mw.text.trim(subcat) | |||
if subcat == "" then return "" end | |||
-- Always include the specific subcategory | |||
local result = "[[Category:" .. subcat .. "]]" | |||
-- Determine parent category | |||
-- In this example, any subcategory containing "elf" gets parent "Elf" | |||
if mw.ustring.match(mw.ustring.lower(subcat), "elf") then | |||
result = result .. "\n[[Category:Elf]]" | |||
end | |||
return result | |||
end | end | ||
return p | return p | ||