Modul:Formular/Work: Unterschied zwischen den Versionen
Aus FürthWiki
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 3: | Zeile 3: | ||
function p.common(args) | function p.common(args) | ||
local t = "" | local t = "" | ||
t = t .. "= Artikel =\n" | |||
t = t .. "{{{standard input|free text|rows=25|editor=wikieditor}}}<br>" | |||
t = t .. "{{{standard input|summary}}}<br>" | |||
t = t .. "{{{standard input|minor edit}}} {{{standard input|watch}}}<br><br>" | |||
t = t .. "{{{standard input|save}}} {{{standard input|preview}}} {{{standard input|changes}}} {{{standard input|cancel}}}" | |||
t = t .. "__NOTOC__" | t = t .. "__NOTOC__" | ||
t = t .. "__NOEDITSECTION__" | t = t .. "__NOEDITSECTION__" | ||
Version vom 28. Januar 2026, 17:59 Uhr
local p = {}
function p.common(args)
local t = ""
t = t .. "= Artikel =\n"
t = t .. "{{{standard input|free text|rows=25|editor=wikieditor}}}<br>"
t = t .. "{{{standard input|summary}}}<br>"
t = t .. "{{{standard input|minor edit}}} {{{standard input|watch}}}<br><br>"
t = t .. "{{{standard input|save}}} {{{standard input|preview}}} {{{standard input|changes}}} {{{standard input|cancel}}}"
t = t .. "__NOTOC__"
t = t .. "__NOEDITSECTION__"
return t
end
return p