Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Documentation for this module may be created at Module:TRT sandbox/doc

function cap_test()
  local capiunto = require 'capiunto'
  return capiunto.create( {
  	title = 'Title of the Infobox'
  } )
  :addRow( 'A label', 'some data' )
  :addHeader( 'A header between the data rows' )
  :addRow( 'Another label', 'more data' )
end

return {cap_test = cap_test}