Difference between revisions of "Module:Ruler"
Jump to navigation
Jump to search
(oops) |
|||
Line 15: | Line 15: | ||
return p | return p | ||
+ | -- </nowiki> |
Revision as of 21:45, 15 December 2018
Documentation for this module may be created at Module:Ruler/doc
-- <nowiki>
local p = {}
function p.ruler(frame)
local lines = mw.text.split(frame.args[1], '*')
local result = ''
for k, v in ipairs(lines) do
v = mw.text.trim(v)
if v ~= '' then
result = result .. '[[Category:Locations ruled by ' .. v .. ']]'
end
end
return result
end
return p
-- </nowiki>