Moduuli:Esine Infobox

Abydos Wikistä
Versio hetkellä 29. lokakuuta 2023 kello 16.41 – tehnyt Virankannos (keskustelu | muokkaukset) (Ak: Uusi sivu: local p = {} function p.run(frame) local capiunto = require 'capiunto' return capiunto.create( { title = tostring(mw.title.getCurrentTitle()) , top = 'Above text', topStyle = 'background:#cfc;', bottom = 'Below text' } ) :addRow(frame.args[1], frame.args[2]) :addRow(frame.args[3], frame.args[4]) end return p)
(ero) ← Vanhempi versio | Nykyinen versio (ero) | Uudempi versio → (ero)

Tämän moduulin ohjeistuksen voi tehdä sivulle Moduuli:Esine Infobox/ohje

local p = {}
 
function p.run(frame)
	local capiunto = require 'capiunto'
	return capiunto.create( {
		title = tostring(mw.title.getCurrentTitle()) ,
		top = 'Above text',
		topStyle = 'background:#cfc;',
		bottom = 'Below text'
	} )
	:addRow(frame.args[1], frame.args[2])
	:addRow(frame.args[3], frame.args[4])
end
 
return p