Difference between revisions of "Module:Bananas"
| Line 5: | Line 5: | ||
return capiunto.create( { | return capiunto.create( { | ||
title = tostring(mw.title.getCurrentTitle()) , | title = tostring(mw.title.getCurrentTitle()) , | ||
| − | top = ' | + | top = 'Basic Info', |
topStyle = 'background:#cfc;', | topStyle = 'background:#cfc;', | ||
bottom = 'Below text' | bottom = 'Below text' | ||
Revision as of 03:47, 18 May 2018
Documentation for this module may be created at Module:Bananas/doc
local p = {}
function p.run()
local capiunto = require 'capiunto'
return capiunto.create( {
title = tostring(mw.title.getCurrentTitle()) ,
top = 'Basic Info',
topStyle = 'background:#cfc;',
bottom = 'Below text'
} )
:addRow('H', 'Hydrogen')
:addRow('He','Helium')
:addRow('Li','Lithium')
end
return p