Module:Sandbox/ProcrastinatingReader
Appearance
local p = {}
function p.main(frame)
local page = mw.title.new(frame.args[1])
local content = page:getContent()
if true then return content end
content = string.match(content, '{{ArbCom Arab-Israeli enforcement') or string.match(content, '{{Arab-Israeli Arbitration Enforcement')
if content then
return "1"
else
return "0"
end
end
return p