Modul:Subrefs: Unterschied zwischen den Versionen

Aus FürthWiki

(Die Seite wurde neu angelegt: „local p = {} --p stands for package function p.subrefs( frame ) pf = frame:getParent() args = pf.args t ='This is just a text' return t end return p“)
(kein Unterschied)

Version vom 2. Februar 2025, 18:54 Uhr

Das ist ein Workaround um das Problem, daß <ref> in Datenfeldern nicht aufgelöst wird.


local p = {} --p stands for package

function p.subrefs( frame )
	pf = frame:getParent()
	args = pf.args
	
	t ='This is just a text' 
	return t
end
return p