Wiki source code of Sandbox

Version 12.1 by Drunk Monkey on 2022-11-01 05:01

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