Wiki source code of Sandbox

Version 36.1 by Jip-jan Alunkel on outubro 09, 16:23

Show last authors
1 {{velocity}}
2 $doc.getLocale()
3 $doc.documentReference
4 context.locale: $context.locale
5 currentLocale: $currentLocale
6 doc.realLocale: ${doc.realLocale}
7 {{/velocity}}
8
9
10 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!
11
12 {{info}}
13 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.
14 {{/info}}
15
16 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.
17
18 Here are a number of test pages you can play with:
19
20 * [[Sandbox Test Page 1>>Sandbox.TestPage1]]
21 * [[Sandbox Test Page 2>>Sandbox.TestPage2]]
22 * [[Sandbox Test Page 3>>Sandbox.TestPage3]]
23
24 Below is a demonstration of the [[XWiki Syntax>>XWiki.XWikiSyntax]] you can use in wiki pages (headings, images, tables).
25
26 = Headings =
27
28 XWiki offers 6 levels of headings. You can use them to structure your pages.
29
30 == Level 2 Heading ==
31
32 === Level 3 Heading ===
33
34 ==== Level 4 Heading 4 ====
35
36 ===== Level 5 Heading 5 =====
37
38 ====== Level 6 Heading 6 ======
39
40 = Styles =
41
42 Basic styles are supported in XWiki:
43
44 * **Text in Bold**
45 * //Text in Italics//
46 * __Text in Underline__
47 * --Text in Strikethrough--
48 * Text in ,,subscript,,
49 * Text in ^^superscript^^
50
51 = Lists =
52
53 You can create various types of lists in your wiki pages:
54
55 == Unordered list ==
56
57 * Level 1
58 ** Level 2
59 *** Level 3
60 ** Level 2
61 * Level 1
62
63 == Numbered list ==
64
65 1. Item
66 11. Subitem
67 111. Item
68 1. Subitem
69
70 == Mixed list ==
71
72 1. Item 1
73 11. Item 2
74 11*. Item 3
75 11*. Item 4
76 1. Item 5
77
78 = Tables =
79
80 You can create tables right into wiki pages:
81
82 == Table with headers in the top row ==
83
84 |= table header |= table header |= table header
85 | cell | cell | cell
86 | cell | cell | cell
87
88 == Table with headers in the top row and left column ==
89
90 |= table header |= table header |= table header
91 |= table header | cell | cell
92 |= table header | cell | cell
93
94 = Links =
95
96 XWiki allows you to create links to other pages in your wiki or on the web:
97
98 * [[WebHome]] -> links to the homepage of the current space
99 * [[Sandbox Home>>WebHome]] -> links can have labels
100 * [[Wiki Home>>Main.WebHome]] -> a link can use the SpaceName.PageName format to link to a page located in another space
101 * [[http://www.xwiki.org]] -> you can link to wiki pages or to external websites
102 * [[XWiki.org Website>>http://www.xwiki.org]] -> link labels work for exernal links too
103
104 You can also create links to attachments:
105
106 attach:XWikiLogo.png
107
108 = Images =
109
110 You can insert images in your wiki pages:
111
112 [[image:XWikiLogo.png]]
113
114 = Macros =
115
116 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:
117
118 == Warning Macro ==
119
120 This macro allows you to draw users' attention to a specific piece of information:
121
122 == Table of Contents ==
123
124 This macro automatically generates a table of contents of your wiki page based on headings:
125
126 {{toc/}}