Module:Episode

De Buck Wiki
Aller à la navigation Aller à la recherche
Documentation module[créer]
-- Used to extract the exact title of an episode

local p = {}


-- Retrieving full episode title

function p.title(frame)
	local articleData = mw.loadData( 'Module:Episode/data')
	local articlePage = mw.ustring.lower (frame.args[1])
	local articleTitle = mw.ustring.lower (frame.args[2])

	return articlePage, " ", articleTitle
end

return p