Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Infobox Meme: Difference between revisions

From Aurora Wiki
No edit summary
No edit summary
Line 5: Line 5:
return capiunto.create( {
return capiunto.create( {
title = frame.args[1],
title = frame.args[1],
bottom = frame.args[7]
bottom = frame.args[8]
} )
} )
:addRow('Zugehörigkeit', frame.args[2])
:addRow('Zugehörigkeit', frame.args[2])
:addRow('Entstehungsjahr',frame.args[3])
:addRow('Entstehungsjahr',frame.args[3])
:addRow('Teil der Sammlungen',frame.args[4])
:addRow('Teil der Sammlungen',frame.args[4])
:addRow('Artikel geschrieben von:',frame.args[8])
:addRow('Artikel geschrieben von:',frame.args[5])
:addImage(
:addImage(
frame.args[5], frame.args[6]
frame.args[6], frame.args[7]
)
)
end
end
   
   
return p
return p

Revision as of 09:35, 3 February 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[8]
	} )
	:addRow('Zugehörigkeit', frame.args[2])
	:addRow('Entstehungsjahr',frame.args[3])
	:addRow('Teil der Sammlungen',frame.args[4])
	:addRow('Artikel geschrieben von:',frame.args[5])
	:addImage(
		frame.args[6], frame.args[7]
	)
end
 
return p