Wiki source code of Sandbox

Version 6.2 by Drunk Monkey on 2022-04-02 07:35

Show last authors
1 = Quagmyre =
2
3 Quagmyre
4
5 The sandbox is a part of your wiki that you can freely modify. It's meant to let you practice editing. You will discover how page editing works and create new pages. Simply click on **Edit** to get started!
6
7 {{info}}
8 Don't worry about overwriting or losing stuff when editing the page, you can always roll back to the first version of the page from the "History" tab at the bottom of the page.
9 {{/info}}
10
11 If you want to give a look to the underlying [[XWiki Syntax>>XWiki.XWikiSyntax]], you can click on "Wiki code" in the "Show" menu or click on the "Source" tab when editing the page.
12
13 Here are a number of test pages you can play with:
14
15 * [[Sandbox Test Page 1>>Sandbox.TestPage1]]
16 * [[Sandbox Test Page 2>>Sandbox.TestPage2]]
17 * [[Sandbox Test Page 3>>Sandbox.TestPage3]]
18
19 Below is a demonstration of the [[XWiki Syntax>>XWiki.XWikiSyntax]] you can use in wiki pages (headings, images, tables).
20
21 = {{id name="你好"/}}Headings =
22
23 XWiki offers 6 levels of headings. You can use them to structure your pages.
24
25 == Level 2 Heading ==
26
27 === Level 3 Heading ===
28
29 ==== Level 4 Heading 4 ====
30
31 ===== Level 5 Heading 5 =====
32
33 ====== Level 6 Heading 6 ======
34
35 = {{id name="这个"/}}Styles =
36
37 Basic styles are supported in XWiki:
38
39 * **Text in Bold**
40 * //Text in Italics//
41 * __Text in Underline__
42 * --Text in Strikethrough--
43 * Text in ,,subscript,,
44 * Text in ^^superscript^^
45
46 = Anchors - ascii =
47
48 xwiki code: ~{~{id name="ae"/}}
49
50 {{id name="ae"/}}ae
51
52 = Anchors - non ascii =
53
54 xwiki code: ~{~{id name="ä"/}}
55
56 {{id name="ä"/}}ä
57
58 = Lists =
59
60 You can create various types of lists in your wiki pages:
61
62 == Unordered list ==
63
64 * Level 1
65 ** Level 2
66 *** Level 3
67 ** Level 2
68 * Level 1
69
70 == Numbered list ==
71
72 1. Item
73 11. Subitem
74 111. Item
75 1. Subitem
76
77 == Mixed list ==
78
79 1. Item 1
80 11. Item 2
81 11*. Item 3
82 11*. Item 4
83 1. Item 5
84
85 = Tables =
86
87 You can create tables right into wiki pages:
88
89 == Table with headers in the top row ==
90
91 |= table header |= table header |= table header
92 | cell | cell | cell
93 | cell | cell | cell
94
95 == Table with headers in the top row and left column ==
96
97 |= table header |= table header |= table header
98 |= table header | cell | cell
99 |= table header | cell | cell
100
101 = Links =
102
103 XWiki allows you to create links to other pages in your wiki or on the web:
104
105 * [[WebHome]] -> links to the homepage of the current space
106 * [[Sandbox Home>>WebHome]] -> links can have labels
107 * [[Wiki Home>>Main.WebHome]] -> a link can use the SpaceName.PageName format to link to a page located in another space
108 * [[http://www.xwiki.org]] -> you can link to wiki pages or to external websites
109 * [[XWiki.org Website>>http://www.xwiki.org]] -> link labels work for exernal links too
110
111 You can also create links to attachments:
112
113 attach:XWikiLogo.png
114
115 = Images =
116
117 You can insert images in your wiki pages:
118
119 image:XWikiLogo.png
120
121 = Macros =
122
123 Macros allow you to make wiki content look better and to add additional features to your wiki. Here are 2 examples of how macros can be used in wiki pages:
124
125 == Warning Macro ==
126
127 {{warning}}
128 Hello World
129 {{/warning}}
130
131 {{warning title="Title"}}
132 Hello World
133 {{/warning}}
134
135 == Box Macro ==
136
137 {{box title="Title"}}
138 box
139 {{/box}}
140
141 {{box title="Title"}}
142 box
143 {{/box}}
144
145 == Note Macro ==
146
147 {{Note title="Title"}}
148 Note
149 {{/box}}
150
151 {{box title="Title"}}
152 Note
153 {{/box}}
154
155 == Info Macro ==
156
157 {{Note title="Title"}}
158 Info
159 {{/box}}
160
161 {{box title="Title"}}
162 Info
163 {{/box}}
164
165 == Error Macro ==
166
167 {{Note title="Title"}}
168 Error
169 {{/box}}
170
171 {{box title="Title"}}
172 Error
173 {{/box}}
174
175 == Success Macro ==
176
177 {{Note title="Title"}}
178 Success
179 {{/box}}
180
181 {{box title="Title"}}
182 Success
183 {{/box}}
184
185
186 == Table of Contents ==
187
188 This macro automatically generates a table of contents of your wiki page based on headings:
189
190 {{toc/}}