אונטערשייד צווישן ווערסיעס פון "יחידה:דעסקריפציע"
קפיצה לניווט
קפיצה לחיפוש
(אנהייב) |
אין תקציר עריכה |
||
שורה 8: | שורה 8: | ||
local args = getArgs(frame) | local args = getArgs(frame) | ||
local templatedata = TD.ReadTemplateData(args[1]) | local templatedata = TD.ReadTemplateData(args[1]) | ||
local ret = templatedata["description"] | local ret = templatedata and templatedata["description"] | ||
return ret | return ret | ||
end | end | ||
return p | return p |
יעצטיגע רעוויזיע זינט 19:43, 29 אקטאבער 2023
מען קען שאפן דאקומענטאציע פאר דעם מאדול ביי יחידה:דעסקריפציע/דאק
local TD = require( "Module:ReadTd" )
local p = {}
function p.fetch(frame)
-- Initialise and populate variables
local getArgs = require("Module:Arguments").getArgs
local args = getArgs(frame)
local templatedata = TD.ReadTemplateData(args[1])
local ret = templatedata and templatedata["description"]
return ret
end
return p