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