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