make this output either true or false, and switch indentation to tabs
local function matchesBlacklist(page, blacklist)
if type(page) ~= 'string' then return nil end for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return matchtrue end end return false