+----
+
+# header1
+
+## header2
+
+### header3
+
+#### header4
+
+##### header 5
+
+**bold**
+
+_italic_
+
+test ms
+
+opopopo
----
This **SandBox** is also a [[blog]]!
[[!inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]
+
+Testy test!
+
+
+
+This is an email link:
+
+Send Mail
+
+
+What follows is some preformatted text. Each line is proceeded by four spaces.
+
+ Test
+
+
+
+
+
+
+
+
+
+
+...Now why doesn't it work like that on my own copy of ikiwiki? :(
+
+Räksmörgås.
+
+`pre?`
+
+Testing. Test. 試é¨ã¨ãã¦æ¸ãè¾¼ã¿ãã¾ãã
+âð¢ðð©ð©ð¶ ð ð¬ð¬ð© ð£ð¬ð«ð±, ðªðð«.
+ðð ð¥ððð¥'ð¤ ð¨ððð¥ ðªð ð¦'ð£ð ððð¥ð ,
+ðð®ð»ð¼ð¸ð·ðªðµðµð, ð ðµð²ð´ð® ðª ð«ð²ð½ ð¸ð¯ ð¼ð½ððµð®. ðð·ð ð¬ðµðªð¼ð¼.
+ððð ð´ ððð'ð ðððð ð ððð ððððð ðð.
+
+ÎαλημÎÏα!
+
+test
+
+I must **emphasise** this.
+
+
+// more pointers
+ #include
+ using namespace std;
+
+ int main ()
+ {
+ int firstvalue = 5, secondvalue = 15;
+ int * p1, * p2;
+
+ p1 = &firstvalue; // p1 = address of firstvalue
+ p2 = &secondvalue; // p2 = address of secondvalue
+ *p1 = 10; // value pointed to by p1 = 10
+ *p2 = *p1; // value pointed to by p2 = value pointed to by p1
+ p1 = p2; // p1 = p2 (value of pointer is copied)
+ *p1 = 20; // value pointed to by p1 = 20
+
+ cout << "firstvalue is " << firstvalue << '\n';
+ cout << "secondvalue is " << secondvalue << '\n';
+ return 0;
+ }