Modul:Chronik: Unterschied zwischen den Versionen

Aus FürthWiki

(Die Seite wurde neu angelegt: „local p = {} local c = require( "Module:Common" ) function p.Semantify(frame) pf = frame:getParent() args = pf.args return args[1] .. 'x' .. args[2] end return p“)
 
Keine Bearbeitungszusammenfassung
Zeile 5: Zeile 5:
pf = frame:getParent()
pf = frame:getParent()
args = pf.args
args = pf.args
title = mw.title.getCurrentTitle()
return args[1] .. 'x' .. args[2]
return '->' .. args[1] .. 'x' .. args[2] .. 't' .. title.text '<-'
end
end


return p
return p

Version vom 18. August 2025, 15:52 Uhr

local p = {}
local c = require( "Module:Common" )

function p.Semantify(frame)
	pf = frame:getParent()
	args = pf.args
	title = mw.title.getCurrentTitle()
	
	return '->' .. args[1] .. 'x' .. args[2] .. 't' .. title.text '<-'
end

return p