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 13: | Line 13: | ||
function p.stripHouse(frame) | function p.stripHouse(frame) | ||
local name = frame.args[1] | local name = frame.args[1] or "" | ||
local prefixes = { "House", "Clan", "Family", "Dynasty" } | local prefixes = { "House", "Clan", "Family", "Dynasty" } | ||
for _, prefix in ipairs(prefixes) do | for _, prefix in ipairs(prefixes) do | ||
local pattern = "^ | local pattern = "^" .. prefix .. "%s+" | ||
name = mw.ustring.gsub(name, pattern, "") | name = mw.ustring.gsub(name, pattern, "") | ||
end | end | ||