(Created page with "<pre> <!-- Das ist ein Kommentar --> Kommentare kann man nur beim Editieren sehen. </pre>") |
(Created page with "<!-- Das ist ein Kommentar --> Kommentare kann man nur beim Editieren sehen.") |
||
Line 195: | Line 195: | ||
</pre> | </pre> | ||
| | | | ||
− | <!-- | + | <!-- Das ist ein Kommentar --> |
− | + | Kommentare kann man nur beim Editieren sehen. | |
| Comments can also be used to hide certain text parts, i.e. to not delete, but only not show those parts. For this, wrap the comment code around the text to be hidden. | | Comments can also be used to hide certain text parts, i.e. to not delete, but only not show those parts. For this, wrap the comment code around the text to be hidden. | ||
|- | |- |
Revision as of 15:55, 13 October 2014
Im TangoWiki können Texte mit Wiki-Code und HTML-Code formatiert werden. Für die Formatierung stehen Sonderzeichen der Tastatur zur Verfügung, außerdem kann im Bearbeitungsmodus die Formatierungsleiste verwendet werden.
Contents
Formatierung im Bearbeitungsmodus mit der Formatierungsleiste
Das TangoWiki bietet im Bearbeitungsmodus eine neue Formatierungsleiste, die das Formatieren einfacher macht:
Signatur mit Zeitstempel einfügen (nur in Diskussionsseiten verwenden, nicht in Artikeln!)
Internen oder externen Link einfügen
Quellennachweis einfügen (=Referenz)
In "Erweitert" können Überschriften und Listen eingefügt werden, nowiki-Code etc. Besonders hilfreich ist das automatische Erstellen einer Tabelle.
Formatierung mit Wiki-Code
Formatierung mit HTML-Code
In MediaWiki sind einige HTML-Tags erlaubt. Zum Beispiel <code>
, <div>
, <span>
und <font>
.
Weitere Infos in der Hilfe von MediaWiki.org.
Beschreibung | Wiki-Code | Ergebnis | Hinweise |
---|---|---|---|
Zitieren | text text <blockquote>Zitat</blockquote> text text |
text text Zitat text text |
|
Kommentar | <!-- Das ist ein Kommentar --> Kommentare kann man nur beim Editieren sehen. |
Kommentare kann man nur beim Editieren sehen. |
Comments can also be used to hide certain text parts, i.e. to not delete, but only not show those parts. For this, wrap the comment code around the text to be hidden. |
Pre-formatted text | <pre>The text is already '''formatted''' and ''Wiki code'' won't have any affect.</pre> |
The text is already '''formatted''' and ''Wiki code'' won't have any affect. |
Corresponds to <nowiki>...</nowiki> . Style information can be added to the code <pre> .
|