La documentation pour ce module peut être créée à Module:DynamicPageList/doc
local p = {}
function p.dpl(args)
local frame = mw.getCurrentFrame()
local dplArgs = {}
for k, v in pairs(args) do
table.insert(dplArgs, k .. "=" .. v)
end
return frame:preprocess("<DPL>\n" .. table.concat(dplArgs, "\n") .. "\n</DPL>")
end
return p