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 20:44, 29 January 2026 by Galactica (talk | contribs)

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:20260129085041!20241223110343!chunkedupload 1e3f5dca59d6.png|350px|Bild zweier handelsüblicher Otter]]', 
		'Caption displayed below'
	)
end
 
return p