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 10:44, 29 January 2026 by Galactica (talk | contribs) (Created page with "local p = {} function p.run() local capiunto = require 'capiunto' return capiunto.create( { title = tostring(mw.title.getCurrentTitle().text), topStyle = 'background:#cfc;', bottom = 'Below text' } ) :addRow('H', 'Hydrogen') :addRow('He','Helium') :addRow('Li','Lithium') :addImage( '350px|Bild zweier handelsüblicher Otter', 'Caption displayed below' ) end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Infobox Meme/doc

local p = {}
 
function p.run()
	local capiunto = require 'capiunto'
	return capiunto.create( {
		title = tostring(mw.title.getCurrentTitle().text),
		topStyle = 'background:#cfc;',
		bottom = 'Below text'
	} )
	:addRow('H', 'Hydrogen')
	:addRow('He','Helium')
	:addRow('Li','Lithium')
	:addImage(
		'[[File:LutraCanadensis fullres.jpg|350px|Bild zweier handelsüblicher Otter]]', 
		'Caption displayed below'
	)
end
 
return p