Infobox Meme: Difference between revisions
From Aurora Wiki
More actions
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" |
No edit summary |
||
| Line 12: | Line 12: | ||
:addRow('Li','Lithium') | :addRow('Li','Lithium') | ||
:addImage( | :addImage( | ||
'[[File: | '[[File:20260129085041!20241223110343!chunkedupload 1e3f5dca59d6.png|350px|Bild zweier handelsüblicher Otter]]', | ||
'Caption displayed below' | 'Caption displayed below' | ||
) | ) | ||
Revision as of 20:44, 29 January 2026
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