Documentation for this module may be created at Module:Move7/doc
local p = {};
p.queryOverride = function(frame)
local id = frame:getParent().args['id']
if id == nil then
return "Error: no id"
end
local root = mw.html.create('div')
for k,v in pairs(frame:getParent().args) do
root:node(mw.html.create('div'):wikitext(k .. ": " .. v))
end
return root
end
return p