« Module:Essai » : différence entre les versions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 4 : | Ligne 4 : | ||
function p.showType() | function p.showType() | ||
local title = mw.title.getCurrentTitle() | local title = tostring(mw.title.getCurrentTitle()) | ||
if string.match(title, "doc") then | if string.match(title, "doc") then | ||
p.type = "doc" | p.type = "doc" |
Version du 4 février 2015 à 14:31
La documentation ci-dessus est inclus depuis Module:Essai/doc. (éditer | historique) Les éditeurs peuvent tester ce module dans sandbox (créer | miroir) et testcases (créer). Sous-pages de ce module. |
local documentation = require('Module:Documentation').main
local p = {}
function p.showType()
local title = tostring(mw.title.getCurrentTitle())
if string.match(title, "doc") then
p.type = "doc"
else
p.type = "std"
end
end
function p.showTitle()
print(tostring(mw.title.getCurrentTitle()))
end
return p