Modul:Infobox

Aus HTK Wiki
Zur Navigation springen Zur Suche springen

local capiunto = require 'capiunto' local infobox = capiunto.create({title = 'Title of the Infobox'}) infobox:addRow( 'A label', 'some data' ) infobox:addHeader( 'A header between the data rows' ) infobox:addRow( 'Another label', 'more data' ) local html = tostring( infobox:getHtml() )