Module:SL Story Infobox: Difference between revisions
From NOISZ Wiki
RiceEmpress (talk | contribs) (Created page with "local capiunto = require 'capiunto' local p = {} function p.main(frame) local args = frame:getParent().args local infobox = capiunto.create( { title1 = args.title1 } ) :addImage( args.image1, args.caption1 ) :addRow( 'Level Requirements', args.level_req ) return infobox end return p") |
(No difference)
|
Latest revision as of 09:02, 3 June 2025
Documentation for this module may be created at Module:SL Story Infobox/doc
local capiunto = require 'capiunto' local p = {} function p.main(frame) local args = frame:getParent().args local infobox = capiunto.create( { title1 = args.title1 } ) :addImage( args.image1, args.caption1 ) :addRow( 'Level Requirements', args.level_req ) return infobox end return p