« Module:Episode » : différence entre les versions

De Buck Wiki
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Balise : Révoqué
Aucun résumé des modifications
 
(10 versions intermédiaires par le même utilisateur non affichées)
Ligne 9 : Ligne 9 :
local articleData = mw.loadData( 'Module:Episode/data')
local articleData = mw.loadData( 'Module:Episode/data')
local articlePage = frame.args[1]
local articlePage = frame.args[1]
local articleTitle = frame.args[2]
local articleResource = articleData[articlePage]
 
local tab = mw.text.split (articleResource, " ")
return articlePage(frame), " ", articleTitle(frame)
return (tab[1])
end
end


return p
return p

Dernière version du 25 août 2022 à 13:25

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 = frame.args[1]
	local articleResource = articleData[articlePage]
	local tab = mw.text.split (articleResource, " ")
	
	return (tab[1])
	
end

return p