Wiki source code of Sandbox

Version 3.1 by Drunk Monkey on 2022-02-14 06:10

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 = 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 = 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 {{id name="ae"/}}ae
49
50 = Anchors - non ascii =
51
52 {{id name="ä"/}}ä
53
54 = Lists =
55
56 You can create various types of lists in your wiki pages:
57
58 == Unordered list ==
59
60 * Level 1
61 ** Level 2
62 *** Level 3
63 ** Level 2
64 * Level 1
65
66 == Numbered list ==
67
68 1. Item
69 11. Subitem
70 111. Item
71 1. Subitem
72
73 == Mixed list ==
74
75 1. Item 1
76 11. Item 2
77 11*. Item 3
78 11*. Item 4
79 1. Item 5
80
81 = Tables =
82
83 You can create tables right into wiki pages:
84
85 == Table with headers in the top row ==
86
87 |= table header |= table header |= table header
88 | cell | cell | cell
89 | cell | cell | cell
90
91 == Table with headers in the top row and left column ==
92
93 |= table header |= table header |= table header
94 |= table header | cell | cell
95 |= table header | cell | cell
96
97 = Links =
98
99 XWiki allows you to create links to other pages in your wiki or on the web:
100
101 * [[WebHome]] -> links to the homepage of the current space
102 * [[Sandbox Home>>WebHome]] -> links can have labels
103 * [[Wiki Home>>Main.WebHome]] -> a link can use the SpaceName.PageName format to link to a page located in another space
104 * [[http://www.xwiki.org]] -> you can link to wiki pages or to external websites
105 * [[XWiki.org Website>>http://www.xwiki.org]] -> link labels work for exernal links too
106
107 You can also create links to attachments:
108
109 attach:XWikiLogo.png
110
111 = Images =
112
113 You can insert images in your wiki pages:
114
115 image:XWikiLogo.png
116
117 = Macros =
118
119 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:
120
121 == Warning Macro ==
122
123 This macro allows you to draw users' attention to a specific piece of information:
124
125 {{warning}}
126 Hello World
127 {{/warning}}
128
129 == Table of Contents ==
130
131 This macro automatically generates a table of contents of your wiki page based on headings:
132
133 {{toc/}}