X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/94743bd2362f5b44415d657b154ba3876782c962..47b9fcd521cf9e2369815d7cd5f4587db73f4b70:/doc/sandbox.mdwn diff --git a/doc/sandbox.mdwn b/doc/sandbox.mdwn index 376acf7cb..acf53e6a8 100644 --- a/doc/sandbox.mdwn +++ b/doc/sandbox.mdwn @@ -1,62 +1,161 @@ -This is the SandBox, a page anyone can edit to try out ikiwiki. +### Is this a heading? -testing 1..2..3! +Why doesn't the following work?.. +[[!color foreground=white background=#ff0000 text="White text on red background"]] ----- +Sure it is. +=========== + +~~~ +Lorem ipsum dolor sit amet, consectetur adipiscing elit. +~~~ + +List: + +* thing 1 +* thing 2 [[test page space allowed]] +* thing 3 +* * sublist a? [[TestPage]] +* * sublist b [[testpage]] +* thing 4 + + + +[[!meta date="Thu Jun 16 22:04:33 2005" updated="Thu Dec 22 01:23:20 2011"]] + +This is the [[SandBox]], a page anyone can edit to try out ikiwiki +(version [[!version ]]). Ikiwiki described on Wikipedia: [[!wikipedia Ikiwiki]]. + +vvvv +CamelCase ? + +[[!tag sandbox tag2]] + +What about [[this page]], nono better [[that page]]? + +hello world (right back at ya) + +wait how does versioning work + +test, is it being saved? Probably. I will check. This seems really straightforward. + +Hello! + +~~~ +pre formated text? +~~~ -Here's a paragraph. สวัสà¸à¸µ +``` +testing markdown + with leading and enclosed spaces +``` -The following code block is pre-formatted: +markdown `inline` single-backquotes? - Testing what - pre-formatted code blocks - look like. +# one -Here's another one with *emphasised* text. +- foo -# Header +## two {#alt-link-name-not-working} + +- bar + +### trois + +- blah + - more blah + +#### quatre + +## bir +- bir + +## iki +- iki + +* yildiz +** cyildiz + +- tire + - ctire + +* *i dene* +* **b dene** + + +1. number +2. list + a. ick + b. bar + +| table | here | +|----| ---- | +| test adfasdfasdfa | 2 | +| subtest | adfad| + +Sort of formatted.. No borders, though. -## Subheader > This is a blockquote. > > This is the first level of quoting. +A block of text > -> > This is nested blockquote. +> > This is a nested blockquote. > >> Without a space works too. >>> to three levels + +This is pretty sweet + +Azerty +** Qsdf ** + > > Back to the first level. +> +> added a line in level 1 +> and another + Numbered list 1. First item. - 1. Sub item. + 1. Sub item. + 1. Number 2 1. Another. 1. And another.. - 1. foo - 2. bar - 3. baz - 4. qux - 5. quux - 6. wibble + 1. foo + 2. bar + 3. quz + 3. quze Bulleted list * item -* *item* +* *italic item* * item * one - * two - * three - * four - * five + * footballs; runner; unices + * Cool ! + * test + * this +* something else + * some more + * and more + * and + * this +> a blockquote +> in a list +> how is this handled + *this _ _ _ + * this 2 + * this 3 -* a new list - * with sub heads - * like this +test _this_ out. +`test this code block` +[[!wikipedia War_of_1812]] ---- [[!template id=note text="this is generated by the [[plugins/haiku]] plugin"]] @@ -64,24 +163,98 @@ Bulleted list ---- -The haiku will change after every save, mind you. - ## Different sorts of links: * [[Features]] +* <http://ikiwiki.info/ikiwiki/formatting/> * [[different_name_for_a_WikiLink|ikiwiki/WikiLink]] * <http://www.gnu.org/> * [GNU](http://www.gnu.org/) -* [Email](mailto:noone@invalid) -* [](http://ikiwiki.info) -* <a href="http://www.google.com/">plain old html link</a> -* [[foo]] -* WikiLink +* <a href="http://kitenet.net/~joey/">Joey's blog</a> + +---- + +# header1 + +## header2 -Test +### header3 ------ +#### header4 -This SandBox is also a [[blog]]! +##### 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! + + +<p> +This is an email link: +<a href="mailto:erik.josefsson@europarl.europa.eu?Subject=Hello%20again" target="_top"> +Send Mail</a> +</p> + +What follows is some preformatted text. Each line is proceeded by four spaces. + + Test + + <Test> + + <test> + <test> + + <test> + <child /> + </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 <iostream> + 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; + }