Mòdul:Page

De Viquinotícies

La documentació d'ús d'aquest mòdul es pot crear a Mòdul:Page/ús

-- Mòdul per funcions específiques sobre una pàgina
local export = {}

-- suport per Plantilla:ifexist, funciona com #ifexist
function export.ifexist(frame)
	local page = frame.args[1] or ''; if page == '' then return '' end
	local exist = frame.args[2] or ''
	local notexist= frame.args[3] or ''
	return mw.title.new(page).exists and exist or notexist
end

return export