Modul:Infobox

Aus HTK Wiki
Zur Navigation springen Zur Suche springen

local capiunto = require 'capiunto'

local infobox = capiunto.create( { title = 'Title of the Infobox' } )

addRow( 'A label', 'some data' )
addHeader( 'A header between the data rows' )
addRow( 'Another label', 'more data' )

local html = tostring( infobox:getHtml() )