View source for Module:auto cat
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local export = {}
local d_languages = mw.loadData("Module:languages/data")
local d = mw.loadData("Module:auto cat/data")
local d_cats, d_pos = d.cats, d.pos
-- Alternative to mw.ustring.gsub that is neater to call in code
-- and can handle multiple replacements at once.
local function replace(str, gsubs)
for from, to in pairs(gsubs) do
str = tostring(mw.ustring.gsub(str, from, to))
end
return str
end
-- Sanitizes a string containing hyphens so that the hyphens
-- do not count as Lua pattern special characters
local function sanitize(str)
return tostring(mw.ustring.gsub(str, "%-", "%-"))
end
000
1:0
Template used on this page:
Return to Module:auto cat.