Wiki source code of Sandbox

Version 7.1 by Drunk Monkey on 2022-04-02 07:52

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 == Box Macro ==
126
127 {{box}}
128 box
129 {{/box}}
130
131 {{box title="Title"}}
132 box
133 {{/box}}
134
135 == Error Macro ==
136
137 {{error}}
138 Error
139 {{/error}}
140
141 {{error title="Title"}}
142 Error
143 {{/error}}
144
145 == Info Macro ==
146
147 {{info}}
148 Info
149 {{/info}}
150
151 {{info title="Title"}}
152 Info
153 {{/info}}
154
155 == Success Macro ==
156
157 {{success}}
158 Success
159 {{/success}}
160
161 {{success title="Title"}}
162 Success
163 {{/success}}
164
165 == Warning Macro ==
166
167 {{warning}}
168 Hello World
169 {{/warning}}
170
171 {{warning title="Title"}}
172 Hello World
173 {{/warning}}
174
175 == Table of Contents ==
176
177 This macro automatically generates a table of contents of your wiki page based on headings:
178
179 {{toc/}}