W tym module nie ma dokumentacji. Jeśli wiesz jak używać tego modułu, proszę, podaj odpowiednie informacje.
local p = {}
local title = mw.title.getCurrentTitle()
function p.id(frame)
return title.id
end
function p.name(frame)
return title.baseText
end
function p.space(frame)
return title.nsText
end
return p