Wiki source code of Sandbox

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

Hide last authors
Drunk Monkey 2.1 1 = Quagmyre =
2
3 Quagmyre
4
Drunk Monkey 9.1 5 External Link ([[good>>https://files.quagmyre.com/index.html]])
6
Drunk Monkey 10.1 7 External Link ([[bad>>https://files.quagmyre.com/nosuchfile.html]])
Drunk Monkey 9.1 8
Drunk Monkey 10.1 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
Drunk Monkey 1.1 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
Drunk Monkey 6.1 36 = {{id name="你好"/}}Headings =
Drunk Monkey 1.1 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
Drunk Monkey 5.1 50 = {{id name="这个"/}}Styles =
Drunk Monkey 1.1 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
Drunk Monkey 3.1 61 = Anchors - ascii =
62
Drunk Monkey 4.1 63 xwiki code: ~{~{id name="ae"/}}
64
Drunk Monkey 3.1 65 {{id name="ae"/}}ae
66
67 = Anchors - non ascii =
68
Drunk Monkey 4.1 69 xwiki code: ~{~{id name="ä"/}}
70
Drunk Monkey 3.1 71 {{id name="ä"/}}ä
72
Drunk Monkey 1.1 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
Drunk Monkey 9.1 134 [[image:XWikiLogo.png]]
Drunk Monkey 1.1 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
Drunk Monkey 6.2 140 == Box Macro ==
141
Drunk Monkey 6.4 142 {{box}}
Drunk Monkey 6.2 143 box
144 {{/box}}
145
Drunk Monkey 8.1 146 {{box title="**Title**"}}
Drunk Monkey 6.2 147 box
148 {{/box}}
149
Drunk Monkey 6.4 150 == Error Macro ==
Drunk Monkey 6.2 151
Drunk Monkey 6.4 152 {{error}}
153 Error
154 {{/error}}
Drunk Monkey 6.2 155
Drunk Monkey 8.1 156 {{error title="**Title**"}}
Drunk Monkey 6.4 157 Error
158 {{/error}}
Drunk Monkey 6.2 159
160 == Info Macro ==
161
Drunk Monkey 6.4 162 {{info}}
Drunk Monkey 6.2 163 Info
Drunk Monkey 6.3 164 {{/info}}
Drunk Monkey 6.2 165
Drunk Monkey 8.1 166 {{info title="**Title**"}}
Drunk Monkey 6.2 167 Info
Drunk Monkey 6.3 168 {{/info}}
Drunk Monkey 6.2 169
170 == Success Macro ==
171
Drunk Monkey 6.4 172 {{success}}
Drunk Monkey 6.2 173 Success
Drunk Monkey 6.3 174 {{/success}}
Drunk Monkey 6.2 175
Drunk Monkey 8.1 176 {{success title="**Title**"}}
Drunk Monkey 6.2 177 Success
Drunk Monkey 6.3 178 {{/success}}
Drunk Monkey 6.2 179
Drunk Monkey 6.4 180 == Warning Macro ==
Drunk Monkey 6.2 181
Drunk Monkey 6.4 182 {{warning}}
183 Hello World
184 {{/warning}}
185
Drunk Monkey 8.1 186 {{warning title="**Title**"}}
Drunk Monkey 6.4 187 Hello World
188 {{/warning}}
189
Drunk Monkey 1.1 190 == Table of Contents ==
191
192 This macro automatically generates a table of contents of your wiki page based on headings:
193
194 {{toc/}}