Ugrás a tartalomhoz

Module:CladeN

Innen: MKOE wiki
A lap korábbi változatát látod, amilyen Dr. Gyúró Zoltán (vitalap | szerkesztései) 2025. május 30., 23:04-kor történt szerkesztése után volt. (Új oldal, tartalma: „local p = {} function p.main(frame) local args = frame:getParent().args local output = {} local indent = 0 table.insert(output, '<div style="font-size:80%;line-height:80%;background-color:#eeeeff; border:1px solid darkred;">') for i = 1, 20 do local label = args[i] if label then local spaces = string.rep("    ", indent) table.insert(output, spaces .. label .. '<br/>') in…”)
(eltér) ← Régebbi változat | Aktuális változat (eltér) | Újabb változat→ (eltér)

local p = {}

function p.main(frame)

   local args = frame:getParent().args
   local output = {}
   local indent = 0

table.insert(output, '

')
   for i = 1, 20 do
       local label = args[i]
       if label then
           local spaces = string.rep("    ", indent)
           table.insert(output, spaces .. label .. '
') indent = indent + 1 end end
table.insert(output, '

')

   return table.concat(output, "\n")

end

return p