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 13: | Line 17: | ||
function p.stripHouse(frame) | function p.stripHouse(frame) | ||
local | local name = mw.title.getCurrentTitle().text | ||
local result = mw.ustring.gsub(name, "^[Hh]ouse%s+", "") | |||
return result | |||
local | |||
return | |||
end | end | ||
return p | return p | ||