1 | <html> |
---|
2 | <head> |
---|
3 | <title>Wiki Syntax Referenz</title> |
---|
4 | </head> |
---|
5 | |
---|
6 | <body> |
---|
7 | |
---|
8 | <h3>Wiki Syntax Referenz</h3> |
---|
9 | |
---|
10 | <p>Die Wiki Syntax ist ein Weg, mit minimalen Tags Deinen Text zu bearbeiten. |
---|
11 | Du benöntigst nur die Grundvoraussetzungen wie Titel, Absatz, Zitat und Liste...</p> |
---|
12 | |
---|
13 | <dl> |
---|
14 | <dt>Blockelemente</dt> |
---|
15 | <dd> |
---|
16 | <ul> |
---|
17 | <li>Lass eine leere Zeile zwischen zwei gleichen Blocks</li> |
---|
18 | <li><strong>Absatz</strong>: Freier Text, endet mit einer leeren Zeile, wenn ein nächster Absatz folgt.</li> |
---|
19 | <li><strong>Titel</strong>: <code>!!! title</code>, <code>!! title</code> |
---|
20 | oder <code>! title</code>, was Dir die Möglichkeit gibt, 3 Formen zu haben.</li> |
---|
21 | <li><strong>Horizontale Linie</strong>: <code>----</code></li> |
---|
22 | <li><strong>Liste</strong>: Beginne jede Zeile mit |
---|
23 | <code>*</code> oder <code>#</code> für nummerierte und unnummerierte Listen. |
---|
24 | Listenzuordnung ist bereits gemacht mit folgenden Verwendungen: |
---|
25 | <pre> |
---|
26 | * item 1 |
---|
27 | ** item 1.1 |
---|
28 | * item 2 |
---|
29 | *# item 2.1 |
---|
30 | ... |
---|
31 | </pre> |
---|
32 | </li> |
---|
33 | <li><strong>Vormatierter Text</strong>: Jede Zeile muss mit einem Leerzeichen beginnen.</li> |
---|
34 | <li><strong>Zitat</strong>: Jede Zeile muss mit einem Semikolon beginnen (<code>></code>).</li> |
---|
35 | </ul> |
---|
36 | </dd> |
---|
37 | |
---|
38 | <dt>Tagformate</dt> |
---|
39 | <dd> |
---|
40 | <ul> |
---|
41 | <li><strong>Betonung</strong>: zwei Anführungszeichen <code>''text''</code></li> |
---|
42 | <li><strong>Starke Betonung</strong>: zwei Unterstriche <code>__text__</code></li> |
---|
43 | <li><strong>Neue Zeile</strong>: <code>%%%</code></li> |
---|
44 | <li><strong>Einschub</strong>: zwei Pluszeichen <code>++text++</code></li> |
---|
45 | <li><strong>Löschung</strong>: zwei Minuszeichen <code>--text--</code></li> |
---|
46 | <li><strong>Link</strong>: <code>[url]</code>, <code>[name|url]</code>, |
---|
47 | <code>[name|url|language]</code> oder <code>[name|url|language|title]</code></li> |
---|
48 | <li><strong>Bild</strong>: |
---|
49 | <code>((url|alternative text))</code>, |
---|
50 | <code>((url|alternative text|position))</code> oder |
---|
51 | <code>((url|alternative text|position|long description))</code>. |
---|
52 | <br />Die Position kann L oder G (links), R oder D (rechts) oder C (zentriert) sein.</li> |
---|
53 | <li><strong>Ankerpunkt</strong>: <code>~anchor~</code></li> |
---|
54 | <li><strong>Acronym</strong>: <code>??acronym|title??</code></li> |
---|
55 | <li><strong>Inline HTML</strong>: zwei backquotes <code>``html code``</code></li> |
---|
56 | <li><strong>Inline quote</strong>: <code>{{quote}}</code>, |
---|
57 | <code>{{quote|language}}</code> oder <code>{{quote|language|url}}</code></li> |
---|
58 | <li><strong>Code</strong>: <code>@@code@@</code></li> |
---|
59 | <li><strong>Fussnote</strong>: <code>$$footnote$$</code></li> |
---|
60 | </ul> |
---|
61 | </dd> |
---|
62 | |
---|
63 | <dt>Unformatierter Text</dt> |
---|
64 | <dd>Wenn Du Deinen Text nicht formatieren willst, dann füge einfach nur |
---|
65 | <code>\</code> ein. Zum Beispiel: |
---|
66 | <code>\[Text in eckigen Klammern ohne URL\]</code> |
---|
67 | </dd> |
---|
68 | |
---|
69 | <dt>HTML Code</dt> |
---|
70 | <dd>Auch wenn Du Dich für die Verwendung der Wiki Syntax entschieden hast, Du benöntigst |
---|
71 | mitunter ausdrucksreichere Möglichkeiten, die Dir die HTML Syntax bietet. Geh folgendermassen vor: |
---|
72 | <pre> |
---|
73 | ///html |
---|
74 | <p style="color:red">mein text in rot</p> |
---|
75 | /// |
---|
76 | </pre> |
---|
77 | </dd> |
---|
78 | </dl> |
---|
79 | |
---|
80 | |
---|
81 | </body> |
---|
82 | </html> |
---|