Modul:Terminanzahl: Unterschied zwischen den Versionen

Aus ipsc.de
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „local p = {} function p.Terminanzahl( frame ) title = mw.title .new('Termine/2017') pt = title:getContent() local _, rq = string.gsub(pt, '{{Term…“)
 
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
local p = {}
local p = {}


function p.Terminanzahl( frame )
function p.Terminanzeilen( frame )
     title  = mw.title .new('Termine/2017')
     title  = mw.title .new('Termine/2017')
     pt = title:getContent()
     pt = title:getContent()

Version vom 6. Dezember 2020, 10:22 Uhr

Die Dokumentation für dieses Modul kann unter Modul:Terminanzahl/Doku erstellt werden

local p = {}

function p.Terminanzeilen( frame )
    title  = mw.title .new('Termine/2017')
    pt = title:getContent()
    local _, rq = string.gsub(pt, '{{Terminzeile', '')

    return rq

	end

return p