Модуль:Test
Материал из ВикиПротопии
Для документации этого модуля может быть создана страница Модуль:Test/doc
local p = {}
function p.hello( frame )
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 p