Difference between revisions of "Module:Ruler"

From The Kingkiller Chronicle Wiki
Jump to navigation Jump to search
(Credit to https://yugipedia.com/wiki/User:Becasita)
(Updated version by Becasita <3)
 
Line 8: Line 8:
 
function p.ruler(frame)
 
function p.ruler(frame)
 
     local lines = mw.text.split(frame.args[1], '*')
 
     local lines = mw.text.split(frame.args[1], '*')
     local result = ''
+
     local result = {}
 +
 
 
     for k, v in ipairs(lines) do
 
     for k, v in ipairs(lines) do
 
         v = mw.text.trim(v)
 
         v = mw.text.trim(v)
         if v ~= '' then
+
 
             result = result .. '[[Category:Locations ruled by ' .. unlink( v ) .. ']]'
+
         if v ~= '' and not v:lower():match( '^n/?a$' ) then
 +
             table.insert( result, '[[Category:Locations ruled by ' .. unlink( v ) .. ']]' )
 
         end
 
         end
 
     end
 
     end
     return result
+
 
 +
     return table.concat( result )
 
end
 
end
  
 
return p
 
return p
 
-- </nowiki>
 
-- </nowiki>

Latest revision as of 03:43, 1 January 2019

Documentation for this module may be created at Module:Ruler/doc

-- <nowiki>
local p = {}

local function unlink( v )
    return mw.text.trim( v:match( '%[%[:?(.-)[|%]]' ) or v )
end

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 ~= '' and not v:lower():match( '^n/?a$' ) then
            table.insert( result, '[[Category:Locations ruled by ' .. unlink( v ) .. ']]' )
        end
    end

    return table.concat( result )
end

return p
-- </nowiki>