Module:Essai

De Adadov.net wiki
Documentation icon Documentation Module[voir] [éditer] [historique] [purger]

Test

local documentation = require('Module:Documentation').main
local title = tostring(mw.title.getCurrentTitle())

local p = {}

p.type = ""

if string.match(title, "doc") then
	p.type = "doc"
else
	p.type = "std"
end

p.title = title

return p