Wiki source code of Sandbox

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

Hide last authors
Drunk Monkey 2.1 1 = Quagmyre =
2
3 Quagmyre
4
Drunk Monkey 1.1 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
Drunk Monkey 6.1 21 = {{id name="你好"/}}Headings =
Drunk Monkey 1.1 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
Drunk Monkey 5.1 35 = {{id name="这个"/}}Styles =
Drunk Monkey 1.1 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
Drunk Monkey 3.1 46 = Anchors - ascii =
47
Drunk Monkey 4.1 48 xwiki code: ~{~{id name="ae"/}}
49
Drunk Monkey 3.1 50 {{id name="ae"/}}ae
51
52 = Anchors - non ascii =
53
Drunk Monkey 4.1 54 xwiki code: ~{~{id name="ä"/}}
55
Drunk Monkey 3.1 56 {{id name="ä"/}}ä
57
Drunk Monkey 1.1 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
Drunk Monkey 6.2 125 == Box Macro ==
126
Drunk Monkey 6.4 127 {{box}}
Drunk Monkey 6.2 128 box
129 {{/box}}
130
131 {{box title="Title"}}
132 box
133 {{/box}}
134
Drunk Monkey 6.4 135 == Error Macro ==
Drunk Monkey 6.2 136
Drunk Monkey 6.4 137 {{error}}
138 Error
139 {{/error}}
Drunk Monkey 6.2 140
Drunk Monkey 6.4 141 {{error title="Title"}}
142 Error
143 {{/error}}
Drunk Monkey 6.2 144
145 == Info Macro ==
146
Drunk Monkey 6.4 147 {{info}}
Drunk Monkey 6.2 148 Info
Drunk Monkey 6.3 149 {{/info}}
Drunk Monkey 6.2 150
Drunk Monkey 6.3 151 {{info title="Title"}}
Drunk Monkey 6.2 152 Info
Drunk Monkey 6.3 153 {{/info}}
Drunk Monkey 6.2 154
155 == Success Macro ==
156
Drunk Monkey 6.4 157 {{success}}
Drunk Monkey 6.2 158 Success
Drunk Monkey 6.3 159 {{/success}}
Drunk Monkey 6.2 160
Drunk Monkey 6.3 161 {{success title="Title"}}
Drunk Monkey 6.2 162 Success
Drunk Monkey 6.3 163 {{/success}}
Drunk Monkey 6.2 164
Drunk Monkey 6.4 165 == Warning Macro ==
Drunk Monkey 6.2 166
Drunk Monkey 6.4 167 {{warning}}
168 Hello World
169 {{/warning}}
170
171 {{warning title="Title"}}
172 Hello World
173 {{/warning}}
174
Drunk Monkey 1.1 175 == Table of Contents ==
176
177 This macro automatically generates a table of contents of your wiki page based on headings:
178
179 {{toc/}}