Wiki source code of Sandbox

Version 21.1 by Drunk Monkey on 2022-11-09 07:53

Show last authors
1 = Quagmyre =
2
3 Quagmyre
4
5 External Link ([[good>>https://files.quagmyre.com/index.html]])
6
7 External Link ([[bad>>https://files.quagmyre.com/nosuchfile.html]])
8
9 Linkchecker: [[here>>XWiki.ExternalLinks]]
10
11 Non existing [[internal link>>notexist||style="outline-width: 0px !important; user-select: auto !important;"]] test
12
13 {{groovy}}
14 import com.xpn.xwiki.web.*
15 import org.xwiki.rendering.transformation.*
16
17 def checker = Utils.getComponent(Transformation.class, "linkchecker")
18
19 print "Link checker queue size = ${checker.linkQueue.size()}"
20 {{/groovy}}
21
22 Glossary test: {{glossaryReference glossaryId="Glossary" entryId="OTE"}}OTE{{/glossaryReference}} is an entry, but OTP is not.
23
24 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!
25
26 {{info}}
27 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.
28 {{/info}}
29
30 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.
31
32 Here are a number of test pages you can play with:
33
34 * [[Sandbox Test Page 1>>Sandbox.TestPage1]]
35 * [[Sandbox Test Page 2>>Sandbox.TestPage2]]
36 * [[Sandbox Test Page 3>>Sandbox.TestPage3]]
37
38 Below is a demonstration of the [[XWiki Syntax>>XWiki.XWikiSyntax]] you can use in wiki pages (headings, images, tables).
39
40 = {{id name="你好"/}}Headings =
41
42 XWiki offers 6 levels of headings. You can use them to structure your pages.
43
44 == Level 2 Heading ==
45
46 === Level 3 Heading ===
47
48 ==== Level 4 Heading 4 ====
49
50 ===== Level 5 Heading 5 =====
51
52 ====== Level 6 Heading 6 ======
53
54 = {{id name="这个"/}}Styles =
55
56 Basic styles are supported in XWiki:
57
58 * **Text in Bold**
59 * //Text in Italics//
60 * __Text in Underline__
61 * --Text in Strikethrough--
62 * Text in ,,subscript,,
63 * Text in ^^superscript^^
64
65 = Anchors - ascii =
66
67 xwiki code: ~{~{id name="ae"/}}
68
69 {{id name="ae"/}}ae
70
71 = Anchors - non ascii =
72
73 xwiki code: ~{~{id name="ä"/}}
74
75 {{id name="ä"/}}ä
76
77 = Lists =
78
79 You can create various types of lists in your wiki pages:
80
81 == Unordered list ==
82
83 * Level 1
84 ** Level 2
85 *** Level 3
86 ** Level 2
87 * Level 1
88
89 == Numbered list ==
90
91 1. Item
92 11. Subitem
93 111. Item
94 1. Subitem
95
96 == Mixed list ==
97
98 1. Item 1
99 11. Item 2
100 11*. Item 3
101 11*. Item 4
102 1. Item 5
103
104 = Tables =
105
106 You can create tables right into wiki pages:
107
108 == Table with headers in the top row ==
109
110 |= table header |= table header |= table header
111 | cell | cell | cell
112 | cell | cell | cell
113
114 == Table with headers in the top row and left column ==
115
116 |= table header |= table header |= table header
117 |= table header | cell | cell
118 |= table header | cell | cell
119
120 = Links =
121
122 XWiki allows you to create links to other pages in your wiki or on the web:
123
124 * [[WebHome]] -> links to the homepage of the current space
125 * [[Sandbox Home>>WebHome]] -> links can have labels
126 * [[Wiki Home>>Main.WebHome]] -> a link can use the SpaceName.PageName format to link to a page located in another space
127 * [[http://www.xwiki.org]] -> you can link to wiki pages or to external websites
128 * [[XWiki.org Website>>http://www.xwiki.org]] -> link labels work for exernal links too
129
130 You can also create links to attachments:
131
132 attach:XWikiLogo.png
133
134 = Images =
135
136 You can insert images in your wiki pages:
137
138 [[image:XWikiLogo.png]]
139
140 = Macros =
141
142 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:
143
144 == Box Macro ==
145
146 {{box}}
147 box
148 {{/box}}
149
150 {{box title="**Title**"}}
151 box
152 {{/box}}
153
154 == Error Macro ==
155
156 {{error}}
157 Error
158 {{/error}}
159
160 {{error title="**Title**"}}
161 Error
162 {{/error}}
163
164 == Info Macro ==
165
166 {{info}}
167 Info
168 {{/info}}
169
170 {{info title="**Title**"}}
171 Info
172 {{/info}}
173
174 == Success Macro ==
175
176 {{success}}
177 Success
178 {{/success}}
179
180 {{success title="**Title**"}}
181 Success
182 {{/success}}
183
184 == Warning Macro ==
185
186 {{warning}}
187 Hello World
188 {{/warning}}
189
190 {{warning title="**Title**"}}
191 Hello World
192 {{/warning}}
193
194 == Table of Contents ==
195
196 This macro automatically generates a table of contents of your wiki page based on headings:
197
198 {{toc/}}