Jump to content

Module:Infobox: Difference between revisions

BRUSpedia (talk | contribs)
No edit summary
Tag: Reverted
BRUSpedia (talk | contribs)
No edit summary
Tag: Reverted
Line 25: Line 25:


     return nil -- Default: do not render
     return nil -- Default: do not render
end
local function has_list_class(args_to_check)
    for _, list in pairs(lists) do
        if not list.found then
            for _, arg in pairs(args_to_check) do
                for _, pattern in ipairs(list.patterns) do
                    if mw.ustring.find(arg or '', pattern) then
                        list.found = true
                        break
                    end
                end
                if list.found then break end
            end
        end
    end
end
end