- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Difference between revisions of "Module:NodeInfoInvoke"
Jump to navigation
Jump to search
(Created page with "local NodeInfoInvoke = {} local NodeInfo = require('Module:NodeInfo') local getArgs = require('Module:GetArgs') function NodeInfoInvoke.Table(frame) local args = getArgs{fr...") |
|||
Line 1: | Line 1: | ||
local NodeInfoInvoke = {} | local NodeInfoInvoke = {} | ||
local NodeInfo = require('Module:NodeInfo') | local NodeInfo = require('Module:NodeInfo') | ||
− | local | + | 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) | function NodeInfoInvoke.Table(frame) | ||
− | + | local context = getContext(frame) | |
− | + | local table = NodeInfo:Table(context.args) | |
+ | if context.args.title then | ||
+ | return table.concat({ context.pagename, context.args.title, title_template, table }, "\n") | ||
+ | else | ||
+ | return table | ||
+ | end | ||
end | end | ||
− | + | ||
return NodeInfoInvoke | return NodeInfoInvoke |
Revision as of 09:25, 15 August 2016
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 = NodeInfo:Table(context.args)
if context.args.title then
return table.concat({ context.pagename, context.args.title, title_template, table }, "\n")
else
return table
end
end
return NodeInfoInvoke