Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
wiki:syntax [20.02.2024 09:52] – Externe Bearbeitung 127.0.0.1wiki:syntax [15.10.2025 05:34] (aktuell) – alte Version wiederhergestellt (10.06.2025 10:42) Michael Wegener
Zeile 1: Zeile 1:
-====== Formatting Syntax ======+====== Umfassende DokuWiki-Syntaxreferenz für wiki.satware.com ======
  
-[[doku>DokuWiki]] supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing "Edit this page". If you want to try something, just use the [[playground:playground|playground]] page. The simpler markup is easily accessible via [[doku>toolbar|quickbuttons]], too.+**Basierend auf DokuWiki 2024-02-06b "KaosRelease**
  
-===== Basic Text Formatting =====+----
  
-DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts. Of course you can **__//''combine''//__** all these.+===== Systemkonfiguration ===== 
 +  * **DokuWiki Version:** 2024-02-06b "Kaos" 
 +  * **Template:** Bootstrap3 v2024-02-06 (hotfix/20241008) 
 +  * **Installierte Plugins:** 25+ aktive Erweiterungen 
 +  * **PHP-Kompatibilität:** 7.4 bis 8.1
  
-  DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts. +----
-  Of course you can **__//''combine''//__** all these.+
  
-You can use <sub>subscript</sub> and <sup>superscript</sup>, too.+===== 1Grundlegende Textformatierung =====
  
-  You can use <sub>subscript</sub> and <sup>superscript</sup>too.+==== Textauszeichnung ==== 
 +<code> 
 +DokuWiki unterstützt **fett**, //kursiv//, __unterstrichen__ und ''monospace'' Text. 
 +Natürlich können Sie **__//''alles kombinieren''//__**. 
 +</code>
  
-You can mark something as <del>deleted</del> as well.+**Ergebnis:**\\ 
 +DokuWiki unterstützt **fett**, //kursiv//, __unterstrichen__ und ''monospace'' Text.\\ 
 +Natürlich können Sie **__//''alles kombinieren''//__**.
  
-  You can mark something as <del>deleted</delas well.+==== Hoch- und Tiefstellung ==== 
 +<code> 
 +Sie können <sub>tiefgestellt</subund <sup>hochgestellt</sup> verwenden. 
 +Beispiel: H<sub>2</sub>O und E=mc<sup>2</sup> 
 +</code>
  
-**Paragraphs** are created from blank lines. If you want to **force a newline** without a paragraph, you can use two backslashes followed by a whitespace or the end of line.+**Ergebnis:** Sie können <sub>tiefgestellt</sub> und <sup>hochgestellt</sup> verwenden.\\ 
 +Beispiel: H<sub>2</sub>O und E=mc<sup>2</sup>
  
-This is some text with some linebreaks\\ Note that the +==== Durchgestrichener Text ==== 
-two backslashes are only recognized at the end of a line\\ +<code> 
-or followed by\\ a whitespace \\this happens without it.+Sie können etwas als <del>gelöscht</del> markieren. 
 +</code>
  
-  This is some text with some linebreaks\\ Note that the +**Ergebnis:** Sie können etwas als <del>gelöscht</del> markieren.
-  two backslashes are only recognized at the end of a line\\ +
-  or followed by\\ a whitespace \\this happens without it.+
  
-You should use forced newlines only if really needed.+==== Zeilenumbrüche und Absätze ==== 
 +<code> 
 +Dies ist Text mit Zeilenumbrüchen\\ 
 +Beachten Sie, dass die zwei Backslashes nur am Zeilenende\\ 
 +oder gefolgt von\\ einem Leerzeichen erkannt werden \\dies passiert ohne. 
 +</code>
  
-===== Links =====+**Ergebnis:**\\ 
 +Dies ist Text mit Zeilenumbrüchen\\ 
 +Beachten Sie, dass die zwei Backslashes nur am Zeilenende\\ 
 +oder gefolgt von\\ einem Leerzeichen erkannt werden \\dies passiert ohne.
  
-DokuWiki supports multiple ways of creating links.+**Wichtig:** Verwenden Sie erzwungene Zeilenumbrüche nur wenn wirklich nötig.
  
-==== External ====+----
  
-External links are recognized automagically: http://www.google.com or simply www.google.com - You can set the link text as well: [[http://www.google.com|This Link points to google]]. Email addresses like this one: <andi@splitbrain.org> are recognized, too.+===== 2Überschriften und Gliederung =====
  
-  DokuWiki supports multiple ways of creating links. External links are recognized +==== Überschriftenebenen ==== 
-  automagically: http://www.google.com or simply www.google.com - You can set +<code> 
-  link text as well: [[http://www.google.com|This Link points to google]]. Email +====== Ebene 1 (Hauptüberschrift) ====== 
-  addresses like this one: <andi@splitbrain.orgare recognized, too.+===== Ebene 2 ===== 
 +==== Ebene 3 ==== 
 +=== Ebene 4 === 
 +== Ebene 5 == 
 +</code>
  
-==== Internal ====+**Ergebnis:** 
 +====== Ebene 1 (Hauptüberschrift) ====== 
 +===== Ebene 2 ===== 
 +==== Ebene 3 ==== 
 +=== Ebene 4 === 
 +== Ebene 5 ==
  
-Internal links are created by using square brackets. You can either just give a [[pagename]] or use an additional [[pagename|link text]].+==== Automatisches Inhaltsverzeichnis ==== 
 +  * Wird automatisch bei mehr als 3 Überschriften erstellt 
 +  * Deaktivierung mit ''%%~~NOTOC~~%%''
  
-  Internal links are created by using square brackets. You can either just give +==== Horizontale Linie ==== 
-  a [[pagename]] or use an additional [[pagename|link text]].+<code> 
 +---- 
 +</code>
  
-[[doku>pagename|Wiki pagenames]] are converted to lowercase automatically, special characters are not allowed.+**Ergebnis:** 
 +----
  
-You can use [[some:namespaces]] by using a colon in the pagename.+Vier oder mehr Bindestriche erzeugen eine horizontale Linie.
  
-  You can use [[some:namespaces]] by using a colon in the pagename.+----
  
-For details about namespaces see [[doku>namespaces]].+===== 3Links =====
  
-Linking to a specific section is possible, tooJust add the section name behind a hash character as known from HTMLThis links to [[syntax#internal|this Section]].+==== Externe Links ==== 
 +<code> 
 +http://www.google.com 
 +[[http://www.google.com]] 
 +[[http://www.google.com|Dieser Link führt zu Google]] 
 +<andi@splitbrain.org> 
 +</code>
  
-  This links to [[syntax#internal|this Section]].+**Ergebnis:**\\ 
 +http://www.google.com\\ 
 +[[http://www.google.com]]\\ 
 +[[http://www.google.com|Dieser Link führt zu Google]]\\ 
 +<andi@splitbrain.org>
  
-Notes:+==== Interne Links ==== 
 +<code> 
 +[[seitenname]] 
 +[[seitenname|Link-Text]] 
 +[[namespace:seitenname]] 
 +[[syntax#internal|Zu diesem Abschnitt]] 
 +</code>
  
-  Links to [[syntax|existing pages]] are shown in a different style from [[nonexisting]] ones. +**Ergebnis:**\\ 
-  * DokuWiki does not use [[wp>CamelCase]] to automatically create links by default, but this behavior can be enabled in the [[doku>config]] file. Hint: If DokuWiki is a link, then it's enabled. +[[seitenname]]\\ 
-  * When a section's heading is changed, its bookmark changes, too. So don't rely on section linking too much.+[[seitenname|Link-Text]]\\ 
 +[[namespace:seitenname]]\\ 
 +[[syntax#internal|Zu diesem Abschnitt]]
  
-==== Interwiki ====+==== Interwiki-Links ==== 
 +<code> 
 +[[doku>Interwiki]] 
 +[[wp>Wiki]] 
 +</code>
  
-DokuWiki supports [[doku>Interwiki]] links. These are quick links to other Wikis. For example this is a link to Wikipedia's page about Wikis: [[wp>Wiki]].+**Ergebnis:**\\ 
 +[[doku>Interwiki]]\\ 
 +[[wp>Wiki]]
  
-  DokuWiki supports [[doku>Interwiki]] links. These are quick links to other Wikis. +==== Windows-Freigaben ==== 
-  For example this is a link to Wikipedia's page about Wikis: [[wp>Wiki]].+<code> 
 +[[\\server\freigabe|Diese Freigabe]] 
 +</code>
  
-==== Windows Shares ====+**Ergebnis:**\\ 
 +[[\\server\freigabe|Diese Freigabe]]
  
-Windows shares like [[\\server\share|this]] are recognized, too. Please note that these only make sense in a homogeneous user group like a corporate [[wp>Intranet]].+==== Bild-Links ==== 
 +<code> 
 +[[http://php.net|{{wiki:dokuwiki-128.png}}]] 
 +</code>
  
-  Windows Shares like [[\\server\share|this]] are recognized, too.+**Ergebnis:**\\ 
 +[[http://php.net|{{wiki:dokuwiki-128.png}}]]
  
-Notes:+----
  
-  * For security reasons direct browsing of windows shares only works in Microsoft Internet Explorer per default (and only in the "local zone")+===== 4Bilder und Medien ===== 
-  * For Mozilla and Firefox it can be enabled through different workaround mentioned in the [[http://kb.mozillazine.org/Links_to_local_pages_do_not_work|Mozilla Knowledge Base]]. However, there will still be a JavaScript warning about trying to open a Windows ShareTo remove this warning (for all users), put the following line in ''conf/lang/en/lang.php'' (more details at [[doku>localization#changing_some_localized_texts_and_strings_in_your_installation|localization]]): <code - conf/lang/en/lang.php+ 
-<?php +==== Grundlegende Bildsyntax ==== 
-/** +<code> 
- * Customization of the english language file +{{wiki:dokuwiki-128.png}}                    // Originalgröße 
- * Copy only the strings that needs to be modified +{{wiki:dokuwiki-128.png?50}}                 // Breite: 50px 
- */ +{{wiki:dokuwiki-128.png?200x50}}             // Breite x Höhe 
-$lang['js']['nosmblinks'] = '';+{{https://www.php.net/images/php.gif?200x50}} // Externes Bild
 </code> </code>
  
-==== Image Links ====+**Ergebnis:**\\ 
 +{{wiki:dokuwiki-128.png}}\\ 
 +{{wiki:dokuwiki-128.png?50}}\\ 
 +{{wiki:dokuwiki-128.png?200x50}}\\ 
 +{{https://www.php.net/images/php.gif?200x50}}
  
-You can also use an image to link to another internal or external page by combining the syntax for links and [[#images_and_other_files|images]] (see below) like this:+==== Bildausrichtung ==== 
 +<code> 
 +{{ wiki:dokuwiki-128.png}}    // Rechtsbündig 
 +{{wiki:dokuwiki-128.png }}    // Linksbündig 
 +{{ wiki:dokuwiki-128.png }}   // Zentriert 
 +</code>
  
-  [[http://php.net|{{wiki:dokuwiki-128.png}}]]+**Ergebnis:**
  
-[[http://php.net|{{wiki:dokuwiki-128.png}}]]+{{ wiki:dokuwiki-128.png}}
  
-Please noteThe image formatting is the only formatting syntax accepted in link names.+{{wiki:dokuwiki-128.png }}
  
-The whole [[#images_and_other_files|image]] and [[#links|link]] syntax is supported (including image resizing, internal and external images and URLs and interwiki links).+{{ wiki:dokuwiki-128.png }}
  
-===== Footnotes =====+==== Bildtitel und Alt-Text ==== 
 +<code> 
 +{{ wiki:dokuwiki-128.png |Dies ist die Bildunterschrift}} 
 +</code>
  
-You can add footnotes ((This is a footnote)) by using double parentheses.+**Ergebnis:**\\ 
 +{{ wiki:dokuwiki-128.png |Dies ist die Bildunterschrift}}
  
-  You can add footnotes ((This is a footnote)) by using double parentheses.+==== Unterstützte Medienformate ====
  
-===== Sectioning =====+^ Typ ^ Formate ^ 
 +| **Bilder** | ''gif'', ''jpg'', ''png'', ''svg''
 +| **Video** | ''webm'', ''ogv'', ''mp4''
 +| **Audio** | ''ogg'', ''mp3'', ''wav''
 +| **Flash** | ''swf'' |
  
-You can use up to five different levels of headlines to structure your content. If you have more than three headlines, a table of contents is generated automatically -- this can be disabled by including the string ''<nowiki>~~NOTOC~~</nowiki>'' in the document.+==== Nur-Link zu Medien ==== 
 +<code> 
 +{{wiki:dokuwiki-128.png?linkonly}} 
 +</code>
  
-==== Headline Level 3 ==== +**Ergebnis:**\\ 
-=== Headline Level 4 === +{{wiki:dokuwiki-128.png?linkonly}}
-== Headline Level 5 ==+
  
-  ==== Headline Level 3 ==== +==== Fallback-Formate für Videos ==== 
-  === Headline Level 4 === +Laden Sie mehrere Formate hoch (z.B. ''video.mp4'', ''video.webm''''video.ogv'') für maximale Browser-Kompatibilität.
-  == Headline Level 5 == +
- +
-By using four or more dashesyou can make a horizontal line:+
  
 ---- ----
  
-===== Media Files =====+===== 5. Listen =====
  
-You can include external and internal [[doku>images|images, videos and audio files]] with curly brackets. Optionally you can specify the size of them.+==== Ungeordnete Listen ==== 
 +<code> 
 +  * Dies ist eine Liste 
 +  * Der zweite Punkt 
 +    * Sie können verschiedene Ebenen haben 
 +    * Noch ein Unterpunkt 
 +  * Ein weiterer Punkt 
 +</code>
  
-Real size                       {{wiki:dokuwiki-128.png}}+**Ergebnis:** 
 +  * Dies ist eine Liste 
 +  * Der zweite Punkt 
 +    * Sie können verschiedene Ebenen haben 
 +    * Noch ein Unterpunkt 
 +  * Ein weiterer Punkt
  
-Resize to given width:            {{wiki:dokuwiki-128.png?50}}+==== Geordnete Listen ==== 
 +<code> 
 +  Die gleiche Liste, aber nummeriert 
 +  - Ein weiterer Punkt 
 +    - Verwenden Sie Einrückung für tiefere Ebenen 
 +    - Das war'
 +  - Zurück zur ersten Ebene 
 +</code>
  
-Resize to given width and height((when the aspect ratio of the given width and height doesn't match that of the image, it will be cropped to the new ratio before resizing)){{wiki:dokuwiki-128.png?200x50}}+**Ergebnis:** 
 +  - Die gleiche Liste, aber nummeriert 
 +  - Ein weiterer Punkt 
 +    - Verwenden Sie Einrückung für tiefere Ebenen 
 +    - Das war'
 +  Zurück zur ersten Ebene
  
-Resized external image:           {{https://www.php.net/images/php.gif?200x50}}+==== Gemischte Listen ==== 
 +<code> 
 +  * Ungeordnet 
 +    - Geordnet 
 +    - Noch einer 
 +  * Zurück zu ungeordnet 
 +</code>
  
-  Real size                       {{wiki:dokuwiki-128.png}} +**Ergebnis:** 
-  Resize to given width:            {{wiki:dokuwiki-128.png?50}} +  * Ungeordnet 
-  Resize to given width and height: {{wiki:dokuwiki-128.png?200x50}} +    Geordnet 
-  Resized external image:           {{https://www.php.net/images/php.gif?200x50}}+    Noch einer 
 +  * Zurück zu ungeordnet
  
 +----
  
-By using left or right whitespaces you can choose the alignment.+===== 6Tabellen =====
  
-{{ wiki:dokuwiki-128.png}}+==== Grundlegende Tabellensyntax ==== 
 +<code> 
 +^ Überschrift 1 ^ Überschrift 2 ^ Überschrift 3 ^ 
 +| Zeile 1 Sp 1  | Zeile 1 Sp 2  | Zeile 1 Sp 3  | 
 +| Zeile 2 Sp 1  | Zeile 2 Sp 2  | Zeile 2 Sp 3  | 
 +</code>
  
-{{wiki:dokuwiki-128.png }}+**Ergebnis:** 
 +^ Überschrift 1 ^ Überschrift 2 ^ Überschrift 3 ^ 
 +| Zeile 1 Sp 1  | Zeile 1 Sp 2  | Zeile 1 Sp 3  | 
 +| Zeile 2 Sp 1  | Zeile 2 Sp 2  | Zeile 2 Sp 3  |
  
-{{ wiki:dokuwiki-128.png }}+==== Colspan (Zellen horizontal verbinden) ==== 
 +<code> 
 +^ Überschrift 1 ^ Überschrift 2 ^ Überschrift 3 ^ 
 +| Zeile 1 Sp 1  | Zeile 1 Sp 2  | Zeile 1 Sp 3  | 
 +| Zeile 2 Sp 1  | ein colspan (beachten Sie die doppelte Pipe) || 
 +| Zeile 3 Sp 1  | Zeile 3 Sp 2  | Zeile 3 Sp 3  | 
 +</code>
  
-  {{ wiki:dokuwiki-128.png}} +**Ergebnis:** 
-  {{wiki:dokuwiki-128.png }} +^ Überschrift 1 ^ Überschrift 2 ^ Überschrift 3 ^ 
-  {{ wiki:dokuwiki-128.png }}+| Zeile 1 Sp 1  | Zeile 1 Sp 2  | Zeile 1 Sp 3  | 
 +| Zeile 2 Sp 1  | ein colspan (beachten Sie die doppelte Pipe) || 
 +| Zeile 3 Sp 1  | Zeile 3 Sp 2  | Zeile 3 Sp 3  |
  
-Of course, you can add a title (displayed as a tooltip by most browsers), too.+==== Vertikale Überschriften ==== 
 +<code> 
 +|              ^ Überschrift 1  ^ Überschrift 2  ^ 
 +^ Überschrift 3 | Zeile 1 Sp 2  | Zeile 1 Sp 3  | 
 +^ Überschrift 4 | Zeile 2 Sp 2  | Zeile 2 Sp 3  | 
 +</code>
  
-{{ wiki:dokuwiki-128.png |This is the caption}}+**Ergebnis:** 
 +|              ^ Überschrift 1  ^ Überschrift 2  ^ 
 +^ Überschrift 3 | Zeile 1 Sp 2  | Zeile 1 Sp 3  | 
 +^ Überschrift 4 | Zeile 2 Sp 2  | Zeile 2 Sp 3  |
  
-  {{ wiki:dokuwiki-128.png |This is the caption}}+==== Rowspan (Zellen vertikal verbinden) ==== 
 +<code> 
 +^ Überschrift 1 ^ Überschrift 2                ^ Überschrift 3 ^ 
 +| Zeile 1 Sp 1  | diese Zelle erstreckt sich vertikal | Zeile 1 Sp 3 | 
 +| Zeile 2 Sp 1  | :::                                 | Zeile 2 Sp 3 | 
 +| Zeile 3 Sp 1  | :::                                 | Zeile 3 Sp 3 | 
 +</code>
  
-For linking an image to another page see [[#Image Links]] above.+**Ergebnis:** 
 +^ Überschrift 1 ^ Überschrift 2                ^ Überschrift 3 ^ 
 +| Zeile 1 Sp 1  | diese Zelle erstreckt sich vertikal | Zeile 1 Sp 3 | 
 +| Zeile 2 Sp 1  | :::                                 | Zeile 2 Sp 3 | 
 +| Zeile 3 Sp 1  | :::                                 | Zeile 3 Sp 3 |
  
-==== Supported Media Formats ====+==== Tabellenausrichtung ==== 
 +<code> 
 +^           Tabelle mit Ausrichtung           ^^^ 
 +|        rechts|    zentriert    |links          | 
 +|links          |        rechts|    zentriert    | 
 +| xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx | 
 +</code>
  
-DokuWiki can embed the following media formats directly.+**Ergebnis:** 
 +^           Tabelle mit Ausrichtung           ^^^ 
 +|        rechts|    zentriert    |links          | 
 +|links          |        rechts|    zentriert    | 
 +| xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx |
  
-| Image | ''gif'', ''jpg'', ''png''  | +**Ausrichtungsregeln:** 
-| Video | ''webm'', ''ogv'', ''mp4''+  * **Rechtsbündig:** Mindestens 2 Leerzeichen links 
-| Audio | ''ogg'', ''mp3'', ''wav''  | +  * **Linksbündig:** Mindestens 2 Leerzeichen rechts   
-| Flash | ''swf''                    |+  * **Zentriert:** Mindestens 2 Leerzeichen auf beiden Seiten
  
-If you specify a filename that is not a supported media format, then it will be displayed as a link instead.+----
  
-By adding ''?linkonly'' you provide a link to the media without displaying it inline+===== 7. Code und Formatierung =====
  
-  {{wiki:dokuwiki-128.png?linkonly}}+==== Inline-Code ==== 
 +<code> 
 +Dies ist ''monospace'' Text. 
 +</code>
  
-{{wiki:dokuwiki-128.png?linkonly}} This is just a link to the image.+**Ergebnis:**\\ 
 +Dies ist ''monospace'' Text.
  
-==== Fallback Formats ====+==== Code-Blöcke ==== 
 +**Ergebnis:** 
 +<code> 
 +Dies ist vorformatierter Code, alle Leerzeichen bleiben erhalten: wie              <-hier 
 +</code>
  
-Unfortunately not all browsers understand all video and audio formats. To mitigate the problem, you can upload your file in different formats for maximum browser compatibility.+==== Datei-Blöcke ==== 
 +<code> 
 +<file
 +Dies ist ziemlich dasselbe, aber Sie könnten es verwenden, um zu zeigen, dass Sie eine Datei zitiert haben. 
 +</file> 
 +</code>
  
-For example consider this embedded mp4 video:+**Ergebnis:** 
 +<file> 
 +Dies ist ziemlich dasselbe, aber Sie könnten es verwenden, um zu zeigen, dass Sie eine Datei zitiert haben. 
 +</file>
  
-  {{video.mp4|A funny video}}+==== Syntax-Highlighting ==== 
 +<code> 
 +<code java> 
 +/** 
 + * Die HelloWorldApp-Klasse implementiert eine Anwendung, die 
 + * einfach "Hello World!" zur Standardausgabe anzeigt. 
 + */ 
 +class HelloWorldApp { 
 +    public static void main(String[] args) { 
 +        System.out.println("Hello World!"); //Zeigt den String an. 
 +    } 
 +} 
 +</code> 
 +</code>
  
-When you upload a ''video.webm'' and ''video.ogv'' next to the referenced ''video.mp4'', DokuWiki will automatically add them as alternatives so that one of the three files is understood by your browser.+**Ergebnis:** 
 +<code java> 
 +/** 
 + * Die HelloWorldApp-Klasse implementiert eine Anwendung, die 
 + * einfach "Hello World!" zur Standardausgabe anzeigt. 
 + */ 
 +class HelloWorldApp { 
 +    public static void main(String[] args) { 
 +        System.out.println("Hello World!"); //Zeigt den String an. 
 +    } 
 +
 +</code>
  
-Additionally DokuWiki supports a "poster" image which will be shown before the video has started. That image needs to have the same filename as the video and be either a jpg or png file. In the example above a ''video.jpg'' file would work.+==== Unterstützte Sprachen für Syntax-Highlighting ==== 
 +''4cs'', ''6502acme'', ''6502kickass'', ''6502tasm'', ''68000devpac'', ''abap'', ''actionscript3'', ''actionscript'', ''ada'', ''aimms'', ''algol68'', ''apache'', ''applescript'', ''apt_sources'', ''arm'', ''asm'', ''asp'', ''asymptote'', ''autoconf'', ''autohotkey'', ''autoit'', ''avisynth'', ''awk'', ''bascomavr'', ''bash'', ''basic4gl'', ''batch'', ''bf'', ''biblatex'', ''bibtex'', ''blitzbasic'', ''bnf'', ''boo'', ''caddcl'', ''cadlisp'', ''ceylon'', ''cfdg'', ''cfm'', ''chaiscript'', ''chapel'', ''cil'', ''c_loadrunner'', ''clojure'', ''c_mac'', ''cmake'', ''cobol'', ''coffeescript'', ''c'', ''cpp'', ''cpp-qt'', ''cpp-winapi'', ''csharp'', ''css'', ''cuesheet'', ''c_winapi'', ''dart'', ''dcl'', ''dcpu16'', ''dcs'', ''delphi'', ''diff'', ''div'', ''dos'', ''dot'', ''d'', ''ecmascript'', ''eiffel'', ''email'', ''epc'', ''e'', ''erlang'', ''euphoria'', ''ezt'', ''f1'', ''falcon'', ''fo'', ''fortran'', ''freebasic'', ''freeswitch'', ''fsharp'', ''gambas'', ''gdb'', ''genero'', ''genie'', ''gettext'', ''glsl'', ''gml'', ''gnuplot'', ''go'', ''groovy'', ''gwbasic'', ''haskell'', ''haxe'', ''hicest'', ''hq9plus'', ''html'', ''html4strict'', ''html5'', ''icon'', ''idl'', ''ini'', ''inno'', ''intercal'', ''io'', ''ispfpanel'', ''java5'', ''java'', ''javascript'', ''jcl'', ''j'', ''jquery'', ''julia'', ''kixtart'', ''klonec'', ''klonecpp'', ''kotlin'', ''latex'', ''lb'', ''ldif'', ''lisp'', ''llvm'', ''locobasic'', ''logtalk'', ''lolcode'', ''lotusformulas'', ''lotusscript'', ''lscript'', ''lsl2'', ''lua'', ''m68k'', ''magiksf'', ''make'', ''mapbasic'', ''mathematica'', ''matlab'', ''mercury'', ''metapost'', ''mirc'', ''mk-61'', ''mmix'', ''modula2'', ''modula3'', ''mpasm'', ''mxml'', ''mysql'', ''nagios'', ''netrexx'', ''newlisp'', ''nginx'', ''nimrod'', ''nsis'', ''oberon2'', ''objc'', ''objeck'', ''ocaml-brief'', ''ocaml'', ''octave'', ''oobas'', ''oorexx'', ''oracle11'', ''oracle8'', ''oxygene'', ''oz'', ''parasail'', ''parigp'', ''pascal'', ''pcre'', ''perl6'', ''perl'', ''per'', ''pf'', ''phix'', ''php-brief'', ''php'', ''pic16'', ''pike'', ''pixelbender'', ''pli'', ''plsql'', ''postgresql'', ''postscript'', ''povray'', ''powerbuilder'', ''powershell'', ''proftpd'', ''progress'', ''prolog'', ''properties'', ''providex'', ''purebasic'', ''pycon'', ''pys60'', ''python'', ''qbasic'', ''qml'', ''q'', ''racket'', ''rails'', ''rbs'', ''rebol'', ''reg'', ''rexx'', ''robots'', ''roff'', ''rpmspec'', ''rsplus'', ''ruby'', ''rust'', ''sas'', ''sass'', ''scala'', ''scheme'', ''scilab'', ''scl'', ''sdlbasic'', ''smalltalk'', ''smarty'', ''spark'', ''sparql'', ''sql'', ''sshconfig'', ''standardml'', ''stonescript'', ''swift'', ''systemverilog'', ''tclegg'', ''tcl'', ''teraterm'', ''texgraph'', ''text'', ''thinbasic'', ''tsql'', ''twig'', ''typoscript'', ''unicon'', ''upc'', ''urbi'', ''uscript'', ''vala'', ''vbnet'', ''vb'', ''vbscript'', ''vedit'', ''verilog'', ''vhdl'', ''vim'', ''visualfoxpro'', ''visualprolog'', ''whitespace'', ''whois'', ''winbatch'', ''wolfram'', ''xbasic'', ''xml'', ''xojo'', ''xorg_conf'', ''xpp'', ''yaml'', ''z80'', ''zxbasic''
  
-===== Lists =====+==== Herunterladbare Code-Blöcke ==== 
 +<code> 
 +<file php myexample.php> 
 +<?php echo "hello world!"; ?> 
 +</file> 
 +</code>
  
-Dokuwiki supports ordered and unordered lists. To create a list item, indent your text by two spaces and use a ''*'' for unordered lists or a ''-'' for ordered ones.+**Ergebnis:** 
 +<file php myexample.php> 
 +<?php echo "hello world!"; ?> 
 +</file>
  
-  * This is a list +==== Code ohne Highlighting ==== 
-  * The second item +<code> 
-    * You may have different levels +<code - myfile.foo> 
-  * Another item+Kein Syntax-Highlighting, aber herunterladbar 
 +</code> 
 +</code>
  
-  - The same list but ordered +**Ergebnis:** 
-  Another item +<code myfile.foo> 
-    Just use indention for deeper levels +Kein Syntax-Highlighting, aber herunterladbar 
-  - That's it+</code>
  
-<code> +----
-  * This is a list +
-  * The second item +
-    * You may have different levels +
-  * Another item+
  
-  - The same list but ordered +===== 8. Keine Formatierung ===== 
-  - Another item + 
-    Just use indention for deeper levels +==== Nowiki-Tags ==== 
-  - That's it+<code> 
 +<nowiki> 
 +Dies ist Text, der Adressen wie diese enthält: http://www.splitbrain.org und **Formatierung**, aber nichts wird damit gemacht. 
 +</nowiki>
 </code> </code>
  
-Also take a look at the [[doku>faq:lists|FAQ on list items]].+**Ergebnis:** 
 +<nowiki> 
 +Dies ist Text, der Adressen wie diese enthälthttp://www.splitbrain.org und **Formatierung**, aber nichts wird damit gemacht. 
 +</nowiki>
  
-===== Text Conversions =====+==== Prozent-Zeichen ==== 
 +<code> 
 +Das Gleiche gilt für %%//__dieser__ Text// mit einem Smiley ;-)%%. 
 +</code>
  
-DokuWiki can convert certain pre-defined characters or strings into images or other text or HTML.+**Ergebnis:**\\ 
 +Das Gleiche gilt für %%//__dieser__ Text// mit einem Smiley ;-)%%.
  
-The text to image conversion is mainly done for smileys. And the text to HTML conversion is used for typography replacements, but can be configured to use other HTML as well.+----
  
-==== Text to Image Conversions ====+===== 9. Zitate =====
  
-DokuWiki converts commonly used [[wp>emoticon]]s to their graphical equivalents. Those [[doku>Smileys]] and other images can be configured and extended. Here is an overview of Smileys included in DokuWiki:+<code> 
 +Ich denke, wir sollten es tun
  
-  * 8-) %%  8-)  %% +> Nein, sollten wir nicht
-  * 8-O %%  8-O  %% +
-  * :-( %%  :-(  %% +
-  * :-) %%  :-)  %% +
-  * =)  %%  =)   %% +
-  * :-/ %%  :-/  %% +
-  * :-\ %%  :-\  %% +
-  * :-? %%  :-?  %% +
-  * :-D %%  :-D  %% +
-  * :-P %%  :-P  %% +
-  * :-O %%  :-O  %% +
-  * :-X %%  :-X  %% +
-  * :-| %%  :-|  %% +
-  * ;-) %%  ;-)  %% +
-  * ^_^ %%  ^_^  %% +
-  * m(  %%  m(   %% +
-  * :?: %%  :?:  %% +
-  * :!: %%  :!:  %% +
-  * LOL %%  LOL  %% +
-  * FIXME %%  FIXME %% +
-  * DELETEME %% DELETEME %%+
  
-==== Text to HTML Conversions ====+>> Nun, ich sage, wir sollten
  
-Typography: [[DokuWiki]] can convert simple text characters to their typographically correct entities. Here is an example of recognized characters.+> Wirklich?
  
--<- <-=> <= <=> >> << -- --- 640x480 (c) (tm) (r) +>> Ja!
-"He thought 'It's a man's world'..."+
  
-<code> +>>> Dann lass es uns tun!
--<- <-=> <= <=> >> << -- --- 640x480 (c) (tm) (r) +
-"He thought 'It's a man's world'..."+
 </code> </code>
  
-The same can be done to produce any kind of HTML, it just needs to be added to the [[doku>entities|pattern file]].+**Ergebnis:**
  
-There are three exceptions which do not come from that pattern file: multiplication entity (640x480)'single' and "double quotes". They can be turned off through a [[doku>config:typography|config option]].+Ich denkewir sollten es tun
  
-===== Quoting =====+> Nein, sollten wir nicht
  
-Some times you want to mark some text to show it's a reply or comment. You can use the following syntax:+>> Nun, ich sage, wir sollten
  
-<code> +Wirklich?
-I think we should do it+
  
-No we shouldn't+>> Ja!
  
->> Well, I say we should+>>> Dann lass es uns tun!
  
-> Really?+----
  
->> Yes!+===== 10. Fußnoten =====
  
->>> Then lets do it!+<code> 
 +Sie können Fußnoten((Dies ist eine Fußnote)) hinzufügen, indem Sie doppelte Klammern verwenden.
 </code> </code>
  
-I think we should do it+**Ergebnis:** Sie können Fußnoten((Dies ist eine Fußnote)) hinzufügen, indem Sie doppelte Klammern verwenden.
  
-> No we shouldn't+----
  
->> Well, I say we should+===== 11. Text-Konvertierungen =====
  
-> Really?+==== Smileys ==== 
 +DokuWiki konvertiert häufig verwendete Emoticons in ihre grafischen Entsprechungen:
  
->> Yes!+<code> 
 +8-) 8-O :-( :-) =) :-/ :-\ :-? :-D :-P :-O :-X :-| ;-) ^_^ m( :?: :!: LOL FIXME DELETEME 
 +</code>
  
->>> Then lets do it!+**Ergebnis:**\\ 
 +8-) 8-O :-( :-) =) :-/ :-\ :-? :-D :-P :-O :-X :-| ;-) ^_^ m( :?: :!: LOL FIXME DELETEME
  
-===== Tables =====+==== Typografische Konvertierungen ==== 
 +<code> 
 +-> <- <-> => <<=> >> << -- --- 640x480 (c) (tm) (r) 
 +"Er dachte 'Es ist eine Männerwelt'..." 
 +</code>
  
-DokuWiki supports a simple syntax to create tables.+**Ergebnis:**\\ 
 +-> <- <-> => <= <=> >> << -- --- 640x480 (c) (tm) (r)\\ 
 +"Er dachte 'Es ist eine Männerwelt'..."
  
-^ Heading 1      ^ Heading 2       ^ Heading 3          ^ +----
-| Row 1 Col 1    | Row 1 Col 2     | Row 1 Col 3        | +
-| Row 2 Col 1    | some colspan (note the double pipe) || +
-| Row 3 Col 1    | Row 3 Col 2     | Row 3 Col 3        |+
  
-Table rows have to start and end with a ''|'' for normal rows or a ''^'' for headers.+===== 12RSS/ATOM Feed-Aggregation =====
  
-  ^ Heading 1      ^ Heading 2       ^ Heading 3          ^ +<code> 
-  | Row 1 Col 1    | Row 1 Col 2     | Row 1 Col 3        | +{{rss>http://slashdot.org/index.rss 5 author date 1h}} 
-  | Row 2 Col 1    | some colspan (note the double pipe) || +</code>
-  | Row 3 Col 1    | Row 3 Col 2     | Row 3 Col 3        |+
  
-To connect cells horizontally, just make the next cell completely empty as shown aboveBe sure to have always the same amount of cell separators!+**Ergebnis:**\\ 
 +{{rss>http://slashdot.org/index.rss 5 author date 1h}}
  
-Vertical tableheaders are possibletoo.+**Parameter:** 
 +  * **Zahl:** Maximale Anzahl der anzuzeigenden Elemente (Standard: 8) 
 +  * **reverse:** Zeigt die letzten Elemente zuerst an 
 +  * **author:** Zeigt Autorennamen an 
 +  * **date:** Zeigt Elementdaten an 
 +  * **description:** Zeigt Elementbeschreibung an (HTML-Tags werden entfernt) 
 +  * **nosort:** Sortiert die Elemente nicht 
 +  * **n[dhm]:** Aktualisierungsperiode (d=Tageh=Stunden, m=Minuten)
  
-|              ^ Heading 1            ^ Heading 2          ^ +----
-^ Heading 3    | Row 1 Col 2          | Row 1 Col 3        | +
-^ Heading 4    | no colspan this time |                    | +
-^ Heading 5    | Row 2 Col 2          | Row 2 Col 3        |+
  
-As you can see, it's the cell separator before a cell which decides about the formatting:+===== 13. Kontroll-Makros =====
  
-  |              ^ Heading 1            ^ Heading 2          ^ +==== NOTOC - Inhaltsverzeichnis unterdrücken ==== 
-  ^ Heading 3    | Row 1 Col 2          | Row 1 Col 3        | +<code> 
-  ^ Heading 4    | no colspan this time |                    | +~~NOTOC~~ 
-  ^ Heading 5    | Row 2 Col 2          | Row 2 Col 3        |+</code>
  
-You can have rowspans (vertically connected cells) by adding ''%%:::%%'' into the cells below the one to which they should connect.+**Ergebnis:** Verhindert die automatische Erstellung eines Inhaltsverzeichnisses.
  
-^ Heading 1      ^ Heading 2                  ^ Heading 3          ^ +==== NOCACHE - Cache deaktivieren ==== 
-| Row 1 Col 1    | this cell spans vertically | Row 1 Col 3        | +<code> 
-| Row 2 Col 1    | :::                        | Row 2 Col 3        | +~~NOCACHE~~ 
-| Row 3 Col 1    | :::                        | Row 2 Col 3        |+</code>
  
-Apart from the rowspan syntax those cells should not contain anything else.+**Ergebnis:** Zwingt DokuWiki, die Seite bei jedem Aufruf neu zu rendern.
  
-  ^ Heading 1      ^ Heading 2                  ^ Heading 3          ^ +----
-  | Row 1 Col 1    | this cell spans vertically | Row 1 Col 3        | +
-  | Row 2 Col 1    | :::                        | Row 2 Col 3        | +
-  | Row 3 Col 1    | :::                        | Row 2 Col 3        |+
  
-You can align the table contents, too. Just add at least two whitespaces at the opposite end of your text: Add two spaces on the left to align right, two spaces on the right to align left and two spaces at least at both ends for centered text.+===== 14Plugin-spezifische Syntax =====
  
-^           Table with alignment           ^^^ +Ihre Installation verfügt über folgende Syntax-Plugins:
-|         right|    center    |left          | +
-|left          |         right|    center    | +
-| xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx |+
  
-This is how it looks in the source:+==== Add New Page Plugin ==== 
 +<code> 
 +{{NEWPAGE}} 
 +{{NEWPAGE>namespace}} 
 +{{NEWPAGE>namespace?label=Benutzerdefiniertes Label}} 
 +</code>
  
-  ^           Table with alignment           ^^^ +**Ergebnis:**\\ 
-          right|    center    |left          | +{{NEWPAGE}}\\ 
-  |left          |         right|    center    | +{{NEWPAGE>namespace}}\\ 
-  | xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx |+{{NEWPAGE>namespace?label=Benutzerdefiniertes Label}}
  
-Note: Vertical alignment is not supported.+==== BPMN.io Plugin ==== 
 +<code> 
 +<bpmnio type="bpmn"> 
 +BPMN XML Inhalt hier... 
 +</bpmnio> 
 +</code>
  
-===== No Formatting =====+**Ergebnis:** Rendert BPMN-Diagramme basierend auf dem bereitgestellten XML-Inhalt.
  
-If you need to display text exactly like it is typed (without any formatting), enclose the area either with ''%%<nowiki>%%'' tags or even simpler, with double percent signs ''<nowiki>%%</nowiki>''.+==== Bureaucracy Plugin ==== 
 +<code> 
 +<form> 
 +Action mail me@example.com 
 +Thanks "Vielen Dank für Ihre Eingabe."
  
-<nowiki> +Fieldset "Persönliche Daten" 
-This is some text which contains addresses like this: http://www.splitbrain.org and **formatting**, but nothing is done with it. +Textbox "Name" "=Ihr Name" 
-</nowiki> +email "E-Mail Adresse" @@
-The same is true for %%//__this__ text// with a smiley ;-)%%.+
  
-  <nowiki+submit "Absenden" 
-  This is some text which contains addresses like this: http://www.splitbrain.org and **formatting**, but nothing is done with it. +</form
-  </nowiki> +</code>
-  The same is true for %%//__this__ text// with a smiley ;-)%%.+
  
-===== Code Blocks =====+**Ergebnis:** Erstellt ein funktionsfähiges Formular mit E-Mail-Versand.
  
-You can include code blocks into your documents by either indenting them by at least two spaces (like used for the previous examples) or by using the tags ''%%<code>%%'' or ''%%<file>%%''.+==== Color Plugin ==== 
 +<code> 
 +<color green>grüner Text</color> 
 +<color blue/lightgrey>blauer Text auf hellgrauem Hintergrund</color> 
 +<color #FF0000>roter Text</color> 
 +</code>
  
-  This is text is indented by two spaces.+**Ergebnis:**\\ 
 +<color green>grüner Text</color>\\ 
 +<color blue/lightgrey>blauer Text auf hellgrauem Hintergrund</color>\\ 
 +<color #FF0000>roter Text</color>
  
 +==== DataTables Plugin ====
 <code> <code>
-This is preformatted code all spaces are preserved: like              <-this+<datatables> 
 +^ Spalte A ^ Spalte B ^ Spalte C ^ 
 +| Zeile A1 | Zeile B1 | Zeile C1 | 
 +| Zeile A2 | Zeile B2 | Zeile C2 | 
 +</datatables>
 </code> </code>
  
-<file> +**Ergebnis:** Erstellt eine interaktive Tabelle mit Sortier-Filter- und Suchfunktionen.
-This is pretty much the samebut you could use it to show that you quoted a file. +
-</file>+
  
-Those blocks were created by this source:+==== Icons Plugin ==== 
 +<code> 
 +{{icon>home}} 
 +{{fa>home|Startseite}} 
 +{{glyphicon>user?24}} 
 +</code>
  
-    This is text is indented by two spaces.+**Ergebnis:**\\ 
 +{{icon>home}}\\ 
 +{{fa>home|Startseite}}\\ 
 +{{glyphicon>user?24}}
  
-  <code> +==== Struct Plugin ==== 
-  This is preformatted code all spaces are preservedlike              <-this +<code> 
-  </code>+---- struct data ---- 
 +schemaperson 
 +name: Max Mustermann 
 +email: max@example.com 
 +---
 +</code>
  
-  <file> +**Ergebnis:** Speichert strukturierte Datendie später abgefragt werden können.
-  This is pretty much the samebut you could use it to show that you quoted a file. +
-  </file>+
  
-==== Syntax Highlighting ====+==== Tag Plugin ==== 
 +<code> 
 +{{tag>tag1 tag2 tag3}} 
 +{{topic>tag1 -tag2}} 
 +{{count>+}} 
 +</code>
  
-[[wiki:DokuWiki]] can highlight sourcecode, which makes it easier to read. It uses the [[http://qbnz.com/highlighter/|GeSHi]] Generic Syntax Highlighter -- so any language supported by GeSHi is supported. The syntax uses the same code and file blocks described in the previous section, but this time the name of the language syntax to be highlighted is included inside the tag, e.g. ''<nowiki><code java></nowiki>'' or ''<nowiki><file java></nowiki>''.+**Ergebnis:**\\ 
 +{{tag>tag1 tag2 tag3}}\\ 
 +{{topic>tag1 -tag2}}\\ 
 +{{count>+}}
  
-<code java+==== ToDo Plugin ==== 
-/** +<code> 
- * The HelloWorldApp class implements an application that +<todo>Titel der Aufgabe</todo> 
- * simply displays "Hello World!" to the standard output. +<todo #>Erledigte Aufgabe</todo> 
- *+<todo @benutzer>Aufgabe für Benutzer</todo>
-class HelloWorldApp { +
-    public static void main(String[] args) { +
-        System.out.println("Hello World!"); //Display the string. +
-    } +
-}+
 </code> </code>
  
-The following language strings are currently recognized: //4cs 6502acme 6502kickass 6502tasm 68000devpac abap actionscript3 actionscript ada aimms algol68 apache applescript apt_sources arm asm asp asymptote autoconf autohotkey autoit avisynth awk bascomavr bash basic4gl batch bf biblatex bibtex blitzbasic bnf boo caddcl cadlisp ceylon cfdg cfm chaiscript chapel cil c_loadrunner clojure c_mac cmake cobol coffeescript c cpp cpp-qt cpp-winapi csharp css cuesheet c_winapi dart dcl dcpu16 dcs delphi diff div dos dot d ecmascript eiffel email epc e erlang euphoria ezt f1 falcon fo fortran freebasic freeswitch fsharp gambas gdb genero genie gettext glsl gml gnuplot go groovy gwbasic haskell haxe hicest hq9plus html html4strict html5 icon idl ini inno intercal io ispfpanel java5 java javascript jcl j jquery julia kixtart klonec klonecpp kotlin latex lb ldif lisp llvm locobasic logtalk lolcode lotusformulas lotusscript lscript lsl2 lua m68k magiksf make mapbasic mathematica matlab mercury metapost mirc mk-61 mmix modula2 modula3 mpasm mxml mysql nagios netrexx newlisp nginx nimrod nsis oberon2 objc objeck ocaml-brief ocaml octave oobas oorexx oracle11 oracle8 oxygene oz parasail parigp pascal pcre perl6 perl per pf phix php-brief php pic16 pike pixelbender pli plsql postgresql postscript povray powerbuilder powershell proftpd progress prolog properties providex purebasic pycon pys60 python qbasic qml q racket rails rbs rebol reg rexx robots roff rpmspec rsplus ruby rust sas sass scala scheme scilab scl sdlbasic smalltalk smarty spark sparql sql sshconfig standardml stonescript swift systemverilog tclegg tcl teraterm texgraph text thinbasic tsql twig typoscript unicon upc urbi uscript vala vbnet vb vbscript vedit verilog vhdl vim visualfoxpro visualprolog whitespace whois winbatch wolfram xbasic xml xojo xorg_conf xpp yaml z80 zxbasic//+**Ergebnis:**\\ 
 +<todo>Titel der Aufgabe</todo>\\ 
 +<todo #>Erledigte Aufgabe</todo>\\ 
 +<todo @benutzer>Aufgabe für Benutzer</todo>
  
-There are additional [[doku>syntax_highlighting|advanced options]] available for syntax highlighting, such as highlighting lines or adding line numbers. +==== VShare Plugin ==== 
- +<code> 
-==== Downloadable Code Blocks ====+{{youtube>L-WM8YxwqEU}} 
 +{{vimeo>123456789}} 
 +{{youtube>L-WM8YxwqEU?large}} 
 +</code>
  
-When you use the ''%%<code>%%'' or ''%%<file>%%'' syntax as aboveyou might want to make the shown code available for download as wellYou can do this by specifying a file name after language code like this:+**Ergebnis:** Bettet Videos von YouTubeVimeo und anderen Plattformen ein.
  
 +==== Wrap Plugin ====
 <code> <code>
-<file php myexample.php+<WRAP classes #id width :language
-<?php echo "hello world!"; ?+"großerInhalt 
-</file>+</WRAP
 + 
 +<wrap classes #id width :language>"kleiner" Inhalt</wrap>
 </code> </code>
  
-<file php myexample.php> +**Ergebnis:** Erstellt Container mit CSS-Klassen für erweiterte Formatierung.
-<?php echo "hello world!"; ?> +
-</file>+
  
-If you don't want any highlighting but want a downloadable file, specify a dash (''-'') as the language code: ''%%<code myfile.foo>%%''.+----
  
-===== RSS/ATOM Feed Aggregation ===== +===== 15. Fehlerbehebung für DokuWiki 2024-02-06b "Kaos" =====
-[[DokuWiki]] can integrate data from external XML feeds. For parsing the XML feeds, [[http://simplepie.org/|SimplePie]] is used. All formats understood by SimplePie can be used in DokuWiki as well. You can influence the rendering by multiple additional space separated parameters:+
  
-^ Parameter  ^ Description ^ +==== Bekannte Probleme und Lösungen ====
-| any number | will be used as maximum number items to show, defaults to 8 | +
-| reverse    | display the last items in the feed first | +
-| author     | show item authors names | +
-| date       | show item dates | +
-| description| show the item description. All HTML tags will be stripped | +
-| nosort     | do not sort the items in the feed | +
-| //n//[dhm] | refresh period, where d=days, h=hours, m=minutes. (e.g. 12h 12 hours). |+
  
-The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. [[wiki:DokuWiki]] will generally try to supply a cached version of a page, obviously this is inappropriate when the page contains dynamic external content. The parameter tells [[wiki:DokuWiki]] to re-render the page if it is more than //refresh period// since the page was last rendered.+=== Formatierte Tabellen-Problem === 
 +  * **Problem:** Tabellen mit komplexer Formatierung werden nicht korrekt gerendert 
 +  * **Lösung:** Entfernen Sie temporär die Tabellenformatierung aus dem Quelltext 
 +  * **Langfristig:** Warten Sie auf offizielle Patches
  
-By default the feed will be sorted by date, newest items firstYou can sort it by oldest first using the ''reverse'' parameter, or display the feed as is with ''nosort''.+=== PHP 8.1 Kompatibilität === 
 +  * **Problem:** Fehler beim Upgrade von PHP 7.4 auf 8.1 
 +  * **Lösung:** Überprüfen Sie Plugin-Kompatibilität und aktualisieren Sie alle Plugins 
 +  * **Beispiel-Fix für ckgedit Plugin:**
  
-**Example:**+<code php> 
 +function checkuserfiles() { 
 +    $expire = 0; // Diese Zeile hinzufügen 
 +    // Rest der Funktion... 
 +
 +</code>
  
-  {{rss>http://slashdot.org/index.rss 5 author date 1h }}+=== Cache-Probleme === 
 +  * Browser-Cache leeren (Strg+F5) 
 +  * ''%%~~NOCACHE~~%%'' temporär verwenden 
 +  * AdminCache über Konfiguration leeren
  
-{{rss>http://slashdot.org/index.rss 5 author date 1h }}+=== Plugin-Konflikte === 
 +  * Plugins einzeln deaktivieren 
 +  * Kompatibilität mit DokuWiki-Version prüfen 
 +  * Plugin-Dokumentation konsultieren
  
 +----
  
-===== Control Macros =====+===== 16. Best Practices und Tipps =====
  
-Some syntax influences how DokuWiki renders a page without creating any output it self. The following control macros are availble:+==== Performance-Optimierung ==== 
 +  * Verwenden Sie ''%%~~NOCACHE~~%%'' nur wenn nötig 
 +  * Große Bilder vor dem Upload optimieren 
 +  * Bei vielen MedienOrdnerstruktur verwenden
  
-^ Macro           ^ Description | +==== Barrierefreiheit ==== 
-| %%~~NOTOC~~%%   | If this macro is found on the page, no table of contents will be created | +  * Alt-Text für Bilder verwenden 
-| %%~~NOCACHE~~%% | DokuWiki caches all output by default. Sometimes this might not be wanted (eg. when the %%<php>%% syntax above is used), adding this macro will force DokuWiki to rerender a page on every call |+  * Aussagekräftige Link-Texte 
 +  * Logische Überschriftenhierarchie
  
-===== Syntax Plugins =====+==== Wartung ==== 
 +  * Regelmäßige Backups 
 +  * Plugin-Updates beachten 
 +  * Broken Links prüfen 
 + 
 +==== Sicherheit ==== 
 +  * Sichere Passwörter verwenden 
 +  * ACL-Einstellungen prüfen 
 +  * Regelmäßige Updates 
 + 
 +---- 
 + 
 +===== 17. Erweiterte Funktionen ===== 
 + 
 +==== Anker-Links ==== 
 +<code> 
 +Dies verlinkt zu [[syntax#internal|diesem Abschnitt]]. 
 +</code> 
 + 
 +**Ergebnis:**\\ 
 +Dies verlinkt zu [[syntax#internal|diesem Abschnitt]]. 
 + 
 +==== Namespaces ==== 
 +<code> 
 +[[some:namespaces]] 
 +</code> 
 + 
 +**Ergebnis:**\\ 
 +[[some:namespaces]] 
 + 
 +Verwenden Sie Doppelpunkte, um Namespaces zu erstellen. 
 + 
 +==== Sektionsbearbeitung ==== 
 +Jede Überschrift wird automatisch zu einem bearbeitbaren Abschnitt. 
 + 
 +----
  
-DokuWiki's syntax can be extended by [[doku>plugins|Plugins]]How the installed plugins are used is described on their appropriate description pagesThe following syntax plugins are available in this particular DokuWiki installation:+**Diese umfassende Syntaxreferenz deckt alle verfügbaren Funktionen Ihrer wiki.satware.com Installation ab und ist speziell auf DokuWiki 2024-02-06b "Kaos" abgestimmt. Bei Problemen konsultieren Sie die DokuWiki-Community oder die offizielle Dokumentation.**
  
-~~INFO:syntaxplugins~~+{{tag>wiki syntax dokuwiki referenz 2024}}
  
  • wiki/syntax.1708419177.txt.gz
  • Zuletzt geändert: 20.02.2024 09:52
  • von 127.0.0.1