Modul:Bild: Unterschied zwischen den Versionen

Aus FürthWiki
Zur Navigation springen Zur Suche springen
Zeile 5: Zeile 5:
 
pf = frame:getParent()
 
pf = frame:getParent()
 
args = pf.args
 
args = pf.args
-- t = f.Daten( frame, args )
+
t = f.Daten( frame, args )
-- return frame:preprocess(t)
+
return frame:preprocess(t)
return 'test'
 
 
end
 
end
  
 
return p
 
return p

Version vom 7. Juni 2024, 15:25 Uhr

local p = {}
local f = require( "Module:Datei" )

function p.Faktenbox( frame )
	pf = frame:getParent()
	args = pf.args
	t = f.Daten( frame, args )
	return frame:preprocess(t)
end

return p