Documentation for this module may be created at Module:NodeInfoInvoke/doc
local NodeInfoInvoke = {}
local NodeInfo = require('Module:NodeInfo')
local getContext = require('Module:Utils').getContext
local title_template = [[<div id="${map} ${node} ${diff}" style="width:700px;text-align:center;">${map} ${node}: ${name} ([http://db.kcwiki.moe/drop/map/${event}${map_number}/${diff_number}/${map}-SAB.html PoiDB])</div>]]
function NodeInfoInvoke.Table(frame)
local context = getContext(frame)
local table_string = NodeInfo:Table(context.args)
if context.args.title then
return table.concat({ context.pagename, context.args.title, title_template, table_string }, "\n")
else
return table_string
end
end
return NodeInfoInvoke