Модуль:Test — различия между версиями
Материал из ВикиПротопии
DileSoft (обсуждение | вклад) |
DileSoft (обсуждение | вклад) |
||
Строка 1: | Строка 1: | ||
+ | local p = {} | ||
+ | |||
+ | function p.hello( frame ) | ||
+ | |||
local capiunto = require 'capiunto' | local capiunto = require 'capiunto' | ||
− | capiunto.create( { | + | return capiunto.create( { |
title = 'Title of the Infobox' | title = 'Title of the Infobox' | ||
} ) | } ) | ||
Строка 6: | Строка 10: | ||
:addHeader( 'A header between the data rows' ) | :addHeader( 'A header between the data rows' ) | ||
:addRow( 'Another label', 'more data' ) | :addRow( 'Another label', 'more data' ) | ||
+ | end | ||
+ | |||
+ | return p |
Текущая версия на 09:45, 28 августа 2017
Для документации этого модуля может быть создана страница Модуль: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