10 * thing 2 [[test page space allowed]]
12 * * sublist a? [[TestPage]]
13 * * sublist b [[testpage]]
18 [[!meta date="Thu Jun 16 22:04:33 2005" updated="Thu Dec 22 01:23:20 2011"]]
20 This is the [[SandBox]], a page anyone can edit to try out ikiwiki
21 (version [[!version ]]).
27 What about [[this page]], nono better [[that page]]?
29 hello world (right back at ya)
31 wait how does versioning work
33 test, is it being saved? Probably. I will check. This seems really straightforward.
43 with leading and enclosed spaces
46 markdown `inline` single-backquotes?
86 | test adfasdfasdfa | 2 |
89 Sort of formatted.. No borders, though.
92 > This is a blockquote.
94 > This is the first level of quoting.
97 > > This is a nested blockquote.
99 >> Without a space works too.
108 > Back to the first level.
110 > added a line in level 1
132 * footballs; runner; unices
143 > how is this handled
150 `test this code block`
151 [[!wikipedia War_of_1812]]
154 [[!template id=note text="this is generated by the [[plugins/haiku]] plugin"]]
155 [[!haiku hint="sandbox play"]]
159 ## Different sorts of links:
162 * <http://ikiwiki.info/ikiwiki/formatting/>
163 * [[different_name_for_a_WikiLink|ikiwiki/WikiLink]]
164 * <http://www.gnu.org/>
165 * [GNU](http://www.gnu.org/)
166 * <a href="http://kitenet.net/~joey/">Joey's blog</a>
189 This **SandBox** is also a [[blog]]!
191 [[!inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]
197 This is an email link:
198 <a href="mailto:erik.josefsson@europarl.europa.eu?Subject=Hello%20again" target="_top">
202 What follows is some preformatted text. Each line is proceeded by four spaces.
215 ...Now why doesn't it work like that on my own copy of ikiwiki? :(
221 Testing. Test. 試験として書き込みします。
222 ℜ𝔢𝔞𝔩𝔩𝔶 𝔠𝔬𝔬𝔩 𝔣𝔬𝔫𝔱, 𝔪𝔞𝔫.
223 𝕀𝕗 𝕥𝕙𝕒𝕥'𝕤 𝕨𝕙𝕒𝕥 𝕪𝕠𝕦'𝕣𝕖 𝕚𝕟𝕥𝕠,
224 𝓟𝓮𝓻𝓼𝓸𝓷𝓪𝓵𝓵𝔂, 𝓘 𝓵𝓲𝓴𝓮 𝓪 𝓫𝓲𝓽 𝓸𝓯 𝓼𝓽𝔂𝓵𝓮. 𝓐𝓷𝓭 𝓬𝓵𝓪𝓼𝓼.
225 𝕭𝖚𝖙 𝕴 𝖉𝖔𝖓'𝖙 𝖍𝖆𝖛𝖊 𝖆 𝖇𝖚𝖌 𝖆𝖇𝖔𝖚𝖙 𝖎𝖙.
231 I must **emphasise** this.
240 int firstvalue = 5, secondvalue = 15;
243 p1 = &firstvalue; // p1 = address of firstvalue
244 p2 = &secondvalue; // p2 = address of secondvalue
245 *p1 = 10; // value pointed to by p1 = 10
246 *p2 = *p1; // value pointed to by p2 = value pointed to by p1
247 p1 = p2; // p1 = p2 (value of pointer is copied)
248 *p1 = 20; // value pointed to by p1 = 20
250 cout << "firstvalue is " << firstvalue << '\n';
251 cout << "secondvalue is " << secondvalue << '\n';