Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen gezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
wiki:syntax [2016/09/07 20:29]
admin [Einfache Text-Formatierung]
wiki:syntax [2016/09/21 00:00] (aktuell)
Zeile 31: Zeile 31:
  
 Man sollten erzwungene Zeilenumbrüche nur verwenden, wenn sie wirklich nötig sind. Man sollten erzwungene Zeilenumbrüche nur verwenden, wenn sie wirklich nötig sind.
 +
 +===== Texthintergrund farblich verändern (plugin) =====
 +
 +Durch das <color blue/​lightgrey>​Color Plugin</​color>​ ist es möglich Text in anderen Farben darzustellen.
 +
 +<color green>​text</​color>​ <color blue/​lightgrey>​text</​color>​
 +<color #​FF0000>​text</​color>​ <color /#​FFff00>​text</​color>​ FIXME
 +
 +  <color green>​text</​color>​ <color blue/​lightgrey>​text</​color> ​
 +  <color #​FF0000>​text</​color>​ <color /#​FFff00>​text</​color>​
 +
 +===== xref Plugin zum formatieren von php =====
 +
 +Dieses Plugin macht eine PHPXref generierte Dokumentation einfach verlinken. Sie können mit Funktionen, konstanten, Variablen, Klassen Tabellen und Dateinamen verknüpfen. Das Plugin wird herausfinden,​ was du gemeint hast automatisch. Die XRef Dokumentation muss auf dem gleichen Server wie der DokuWiki Installation mit diesem Plugin zur Verfügung.
 +
 +Die Syntax ähnelt Interwiki-Links. Starte einfach den Link mit der Xref > Schlüsselwort gefolgt von einer Funktion, konstante, Variable, Klasse, Tabelle oder Datei Name.
 +
 +Hier ein Beispiel:
 +
 +<​code>​
 +  * A Funktion: [[xref>​wl()]]
 +  * A Variable: [[xref>​$USERINFO]]
 +  * A Class: [[xref>​auth_basic]]
 +  * A Datei: [[xref>​inc/​auth.php]]
 +  * A Funktion mit einem Titel: [[xref>​cleanID()|Dies ist eine wichtige Funktion]]
 +</​code>​
 +
 +It looks like this:
 +
 +  * Funktion: [[xref>​wl()]]
 +  * A Variable: [[xref>​$USERINFO]]
 +  * A Class: [[xref>​auth_basic]]
 +  * A Datei: [[xref>​inc/​auth.php]]
 +  * A Funktion mit einem Titel: [[xref>​cleanID()|Dies ist eine wichtige Funktion]]
 +
 +
 +===== Bootstrap Wrapper Plugin (plugin) =====
 +
 +Besuchen Sie vollständigen Beispielen und syntax http://​www.lotar.altervista.org/​dokuwiki/​wiki/​plugin/​bootswrapper.
 +
 +Dokumentationsdummy [[https://​www.dokuwiki.org/​plugin:​bootswrapper#​nav]]
 +
 +=== Jumbotron ===
 +
 +<​jumbotron>​
 +== Hallo, Welt! ==
 +
 +Dies ist eine einfache Box im jumbotron-style ​
 +als Komponente um zusätzliche Aufmerksamkeit auf besondere
 +Inhalte oder Informationen zu erregen.
 +</​jumbotron>​
 +
 +<​code>​
 +  <​jumbotron>​
 +  == Hallo, Welt ==
 +  ​
 +  Dies ist eine einfache Box im jumbotron-style ​
 +  als Komponente um zusätzliche Aufmerksamkeit auf besondere
 +  Inhalte oder Informationen zu erregen.
 +  </​jumbotron>​
 +</​code>​
 +
 +=== Panel ===
 +
 +<panel type="​default"​ title="​Titel des Panel" subtitle="​Untertitel"​ icon="​fa fa-house">​
 +Panel Inhaltestext
 +</​panel>​
 +
 +<​code>​
 +  <panel type="​default"​ title="​Titel des Panel" subtitle="​Untertitel"​ icon="​fa fa-house">​
 +  Panel Inhaltestext
 +  </​panel>​
 +</​code>​
 +
 +=== Alert ===
 +
 +<alert type="​success"​ icon="​glyphicon glyphicon-user"​ dismiss="​true">​
 +**Gut gemacht!** Diese wichtige Warnmeldung wird sicher gelesen
 +</​alert>​
 +
 +<​code>​
 +  <alert type="​success"​ icon="​glyphicon glyphicon-user"​ dismiss="​true">​
 +  **Gut gemacht!** Diese wichtige Warnmeldung wird sicher gelesen
 +  *</​alert>​
 +</​code>​
 +
 +=== Text ===
 +
 +* <text type="​muted">​muted</​text>​
 +
 +* <text type="​primary">​Primäre</​text>​
 +
 +* <text type="​success">​Erfolgreich</​text>​
 +
 +* <text type="​info">​Info</​text>​
 +
 +* <text type="​warning">​Warnung</​text>​
 +
 +* <text type="​danger">​Gefährlich</​text>​
 +
 +<​code>​
 +  * <text type="​muted">​muted</​text>​
 +  * <text type="​primary">​Primäre</​text>​
 +  * <text type="​success">​Erfolgreich</​text>​
 +  * <text type="​info">​Info</​text>​
 +  * <text type="​warning">​Warnung</​text>​
 +  * <text type="​danger">​Gefährlich</​text>​
 +</​code>​
 +
 +=== Tooltip ===
 +
 +<tooltip title="​Sample Text" location="​bottom">​Lorem ipsum</​tooltip>​
 + dolor sit amet...
 +
 +<​code><​tooltip title="​Sample Text" location="​bottom">​Lorem ipsum</​tooltip>​ dolor sit amet...</​code>​
 +
 +=== Grids ===
 +
 +<​grid>​
 +<col sm="​6">​.col-sm-6</​col>​
 +<col sm="​6">​.col-sm-6</​col>​
 +</​grid>​
 +
 +<​code><​grid>​
 +<col sm="​6">​.col-sm-6</​col>​
 +<col sm="​6">​.col-sm-6</​col>​
 +</​grid></​code>​
 +
 +<​grid>​
 +<col xs="​12"​ sm="​6"​ lg="​8">​.col-xs-12 .col-sm-6 .col-lg-8</​col>​
 +<col xs="​6"​ lg="​4">​.col-xs-6 .col-lg-4</​col>​
 +</​grid>​
 +
 +<​code><​grid>​
 +<col xs="​12"​ sm="​6"​ lg="​8">​.col-xs-12 .col-sm-6 .col-lg-8</​col>​
 +<col xs="​6"​ lg="​4">​.col-xs-6 .col-lg-4</​col>​
 +</​grid></​code>​
 +
 +=== Thumbnail ===
 +
 +<​grid>​
 +...
 +<col xs="​6"​ md="​3">​
 +<​thumbnail>​
 +{{ wiki:​dokuwiki-128.png }}
 +</​thumbnail>​
 +</​col>​
 +...
 +</​grid>​
 +
 +<​code><​grid>​
 +...
 +<col xs="​6"​ md="​3">​
 +<​thumbnail>​
 +{{ wiki:​dokuwiki-128.png }}
 +</​thumbnail>​
 +</​col>​
 +...
 +</​grid></​code>​
 +
 +<​grid>​
 +...
 +<col xs="​6"​ md="​3">​
 +<​thumbnail>​
 +{{ wiki:​dokuwiki-128.png }}
 +<​caption>​
 +=== DokuWiki ===
 +
 +//DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn'​t require a database. It is loved by users for its clean and readable syntax. The ease of maintenance,​ backup and integration makes it an administrator'​s favorite. Built in access controls and authentication connectors make DokuWiki especially useful in the enterprise context and the large number of plugins contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.//
 +</​caption>​
 +</​thumbnail>​
 +...
 +</​col>​
 +</​grid>​
 +
 +
 +<​code><​grid>​
 +...
 +<col xs="​6"​ md="​3">​
 +<​thumbnail>​
 +{{ wiki:​dokuwiki-128.png }}
 +<​caption>​
 +=== DokuWiki ===
 +
 +//DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn'​t require a database. It is loved by users for its clean and readable syntax. The ease of maintenance,​ backup and integration makes it an administrator'​s favorite. Built in access controls and authentication connectors make DokuWiki especially useful in the enterprise context and the large number of plugins contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.//
 +</​caption>​
 +</​thumbnail>​
 +...
 +</​col>​
 +</​grid></​code>​
 +
 +
 +=== Well ===
 +
 +<​well>​Look,​ I'm in a well!</​well>​
 +
 +<​code><​well>​Look,​ I'm in a well!</​well></​code>​
 +
 +=== Button ===
 +
 +<button type="​success"​ size="​lg"​ icon="​glyphicon glyphicon-edit">​[[:​wiki:​welcome]]</​button>​
 +
 +<​code><​button type="​success"​ size="​lg"​ icon="​glyphicon glyphicon-edit">​[[:​wiki:​welcome]]</​button></​code>​
 +
 +=== Nav ===
 +
 +<nav>
 +  * [[:start]]
 +  * [[:​plugin:​bootswrapper|Plugin]]
 +  * [[playground:​playground]]
 +  * DokuWiki
 +    * [[:​wiki:​welcome]]
 +    * [[:​wiki:​syntax]]
 +</​nav>​
 +
 +<​code><​nav>​
 +  * [[:start]]
 +  * [[:​plugin:​bootswrapper|Plugin]]
 +  * [[playground:​playground]]
 +  * DokuWiki
 +    * [[:​wiki:​welcome]]
 +    * [[:​wiki:​syntax]]
 +</​nav></​code>​
 +
 +=== Configuration and Settings ===
 +
 +^ Configuration ​ ^ Default ​ ^
 +^ loadBootstrap ​ | 1        |
 +
 +<​code>​
 +^ Configuration ​ ^ Default ​ ^
 +^ loadBootstrap ​ | 1        |
 +</​code>​
 +
 +FIXME
 +
 +
  
 ===== Links ===== ===== Links =====
wiki/syntax.1473272947.txt.gz · Zuletzt geändert: 2016/09/07 00:00 (Externe Bearbeitung)
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0