-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.xml
More file actions
117 lines (92 loc) · 4.21 KB
/
example.xml
File metadata and controls
117 lines (92 loc) · 4.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="UTF-8"?>
<ac:confluence-content xmlns:ac="http://www.atlassian.com/schema/confluence/4/ac/" xmlns:ri="http://www.atlassian.com/schema/confluence/4/ri/">
<ac:rich-text-body>
<h1>Willkommen zur Confluence XML Reader Demo</h1>
<p>Dies ist eine Beispiel-Seite, die verschiedene Confluence-Elemente demonstriert.</p>
<h2>Textformatierung</h2>
<p>Dieser Absatz enthält <strong>fetten Text</strong>, <em>kursiven Text</em>, <u>unterstrichenen Text</u> und <s>durchgestrichenen Text</s>.</p>
<p>Hier ist etwas <code>inline Code</code> im Text.</p>
<h2>Listen</h2>
<h3>Ungeordnete Liste</h3>
<ul>
<li>Erster Punkt</li>
<li>Zweiter Punkt mit <strong>Formatierung</strong></li>
<li>Dritter Punkt</li>
</ul>
<h3>Geordnete Liste</h3>
<ol>
<li>Schritt 1: Installation</li>
<li>Schritt 2: Konfiguration</li>
<li>Schritt 3: Ausführung</li>
</ol>
<h2>Code-Beispiel</h2>
<ac:structured-macro ac:name="code">
<ac:parameter ac:name="language">javascript</ac:parameter>
<ac:plain-text-body><![CDATA[function helloWorld() {
console.log("Hello, Confluence!");
return true;
}
// Aufruf der Funktion
helloWorld();]]></ac:plain-text-body>
</ac:structured-macro>
<h2>Tabelle</h2>
<table>
<thead>
<tr>
<th>Feature</th>
<th>Status</th>
<th>Priorität</th>
</tr>
</thead>
<tbody>
<tr>
<td>XSLT-Transformation</td>
<td>Implementiert</td>
<td>Hoch</td>
</tr>
<tr>
<td>Modernes UI</td>
<td>Implementiert</td>
<td>Hoch</td>
</tr>
<tr>
<td>Bilder-Support</td>
<td>In Arbeit</td>
<td>Mittel</td>
</tr>
</tbody>
</table>
<h2>Panels und Makros</h2>
<ac:structured-macro ac:name="info">
<ac:rich-text-body>
<p>Dies ist eine <strong>Info-Box</strong>. Sie eignet sich für wichtige Hinweise.</p>
</ac:rich-text-body>
</ac:structured-macro>
<ac:structured-macro ac:name="warning">
<ac:rich-text-body>
<p>Dies ist eine <strong>Warnungs-Box</strong>. Vorsicht ist geboten!</p>
</ac:rich-text-body>
</ac:structured-macro>
<ac:structured-macro ac:name="tip">
<ac:rich-text-body>
<p>Dies ist eine <strong>Tipp-Box</strong>. Hier sind nützliche Hinweise zu finden.</p>
</ac:rich-text-body>
</ac:structured-macro>
<ac:structured-macro ac:name="note">
<ac:rich-text-body>
<p>Dies ist eine <strong>Notiz-Box</strong> für zusätzliche Informationen.</p>
</ac:rich-text-body>
</ac:structured-macro>
<h2>Links</h2>
<p>Hier ist ein <a href="https://www.atlassian.com/software/confluence">externer Link zu Confluence</a>.</p>
<p>Und hier ist ein interner Link: <ac:link><ri:page ri:content-title="Andere Seite"/></ac:link></p>
<h2>Weiteres Beispiel-Makro</h2>
<ac:structured-macro ac:name="toc">
<ac:parameter ac:name="maxLevel">3</ac:parameter>
<ac:parameter ac:name="minLevel">1</ac:parameter>
</ac:structured-macro>
<h2>Zusammenfassung</h2>
<p>Dieser XML Reader unterstützt die wichtigsten Confluence-Elemente und verwandelt sie in ein schön formatiertes, lesbares HTML-Dokument.</p>
<p><strong>Viel Erfolg beim Verwenden des Tools!</strong></p>
</ac:rich-text-body>
</ac:confluence-content>