Modul:Benutzer:Vollbracht/NoLint

aus Wikipedia, der freien Enzyklopädie
Zur Navigation springen Zur Suche springen

Die Dokumentation für dieses Modul kann unter Modul:Benutzer:Vollbracht/NoLint/Doku erstellt werden

local p = {}

-- Tabelle nur in der Spielwiese zeichnen (zur Vermeidung von LintErrors)

p.top = function(frame)
  local CN = frame[1] or 'center'
  if CN == 'none' then return '{|\n' end
  return '{| class="' .. CN .. '"\n'
end

p.row = function(frame)
  local RP = '\n|- ' .. frame[1] .. ' \n' or '\n|-\n'
  return RP
end

p.cell = function(frame)
  local RP = '\n| ' .. frame[1] .. ' | ' or '\n| '
  return RP
end

p.bottom = function()
  return '\n|}'
end

return p