Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 00:02, 16 July 2026 by Tucker R. Twomey (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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}