Infobox Meme: Difference between revisions
From Aurora Wiki
More actions
No edit summary |
No edit summary |
||
| Line 4: | Line 4: | ||
local capiunto = require 'capiunto' | local capiunto = require 'capiunto' | ||
return capiunto.create( { | return capiunto.create( { | ||
title = | title = frame.args[1], | ||
bottom = frame.args[ | bottom = frame.args[7] | ||
} ) | } ) | ||
:addRow('Zugehörigkeit', frame.args[2]) | :addRow('Zugehörigkeit', frame.args[2]) | ||
Revision as of 16:59, 30 January 2026
Documentation for this module may be created at Module:Infobox Meme/doc
local p = {}
function p.run(frame)
local capiunto = require 'capiunto'
return capiunto.create( {
title = frame.args[1],
bottom = frame.args[7]
} )
:addRow('Zugehörigkeit', frame.args[2])
:addRow('Entstehungsjahr',frame.args[3])
:addRow('Teil von',frame.args[4])
:addImage(
frame.args[5], frame.args[6]
)
end
return p