]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/sandbox.mdwn
a78068cc843883297cb492ca18e8fa3027949d09
[git.ikiwiki.info.git] / doc / sandbox.mdwn
1 ###Is this a heading? 
3 Why doesn't the following work?..
4 [[!color  foreground=white background=#ff0000 text="White text on red background"]]
6 Sure it is. 
8 Nope my friend.
10 List:
12 * thing 1
13 * thing 2 [[test page space allowed]]
14 * thing 3
15 * * sublist a? [[TestPage]]
16 * * sublist b [[testpage]]
17 * thing 4
21 [[!meta date="Thu Jun 16 22:04:33 2005" updated="Thu Dec 22 01:23:20 2011"]]
23 This is the [[SandBox]], a page anyone can edit to try out ikiwiki
24 (version [[!version  ]]).
25 vvvv
26 CamelCase ?
28 [[!tag sandbox tag2]]
30 What about [[this page]], nono better [[that page]]?
32 hello world (right back at ya)
34 wait how does versioning work
36 test, is it being saved? Probably. I will check. This seems really straightforward.
38 Hello!
40 ~~~
41 pre formated text?
42 ~~~
44 ```
45 testing markdown  
46     with leading    and enclosed spaces
47 ```
49 markdown `inline` single-backquotes?
51 # one
53 - foo
55 ## two
57 - bar
59 ### trois
61 - blah
62     - more blah
64 #### quatre
66 ## bir
67 - bir
69 ## iki
70 - iki
72 * yildiz
73 ** cyildiz
75 - tire
76   - ctire
78 * *i dene*
79 * **b dene**
82 1. number
83 2. list
84     a. ick
85     b. bar
87 | table | here |
88 |----| ---- |
89 | test adfasdfasdfa | 2 |
90 | subtest | adfad|
92 Sort of formatted.. No borders, though.
95 > This is a blockquote.
96 >
97 > This is the first level of quoting.
98 A block of text
99 >
100 > > This is a nested blockquote.
102 >> Without a space works too.
103 >>> to three levels
105 This is pretty sweet
107 Azerty
108 ** Qsdf **
111 > Back to the first level.
113 > added a line in level 1
114 > and another
117 Numbered list 
119 1. First item.
120     1. Sub item.
121     1. Number 2
122 1. Another.
123 1. And another..
124     1. foo
125     2. bar
126     3. quz
127     3. quze
129 Bulleted list
131 * item
132 * *italic item*
133 * item
134 * one
135   * footballs; runner; unices
136   * Cool !
137     * test
138   * this
139 * something else
140   * some more
141   * and more
142     * and
143       * this
144 > a blockquote
145 > in a list
146 > how is this handled
147         *this  _ _ _
148       * this 2
149       * this 3
151 test _this_ out.
153 `test this code block`
154 [[!wikipedia War_of_1812]]
155 ----
157 [[!template id=note text="this is generated by the [[plugins/haiku]] plugin"]]
158 [[!haiku hint="sandbox play"]]
160 ----
162 ## Different sorts of links:
164 * [[Features]]
165 * <http://ikiwiki.info/ikiwiki/formatting/>
166 * [[different_name_for_a_WikiLink|ikiwiki/WikiLink]]
167 * <http://www.gnu.org/>
168 * [GNU](http://www.gnu.org/)
169 * <a href="http://kitenet.net/~joey/">Joey's blog</a>
171 ----
173 # header1
175 ## header2
177 ### header3
179 #### header4
181 ##### header 5
183 **bold**
185 _italic_
187 test ms
189 opopopo
190 ----
192 This **SandBox** is also a [[blog]]!
194 [[!inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]
196 Testy test!
199 <p>
200 This is an email link:
201 <a href="mailto:erik.josefsson@europarl.europa.eu?Subject=Hello%20again" target="_top">
202 Send Mail</a>
203 </p>
205 What follows is some preformatted text.  Each line is proceeded by four spaces.
207     Test
209     <Test>
211     <test>
212     <test>
214     <test>
215       <child />
216     </test>
218 ...Now why doesn't it work like that on my own copy of ikiwiki? :(
220 Räksmörgås.
222 `pre?`
224 Testing. Test. 試験として書き込みします。
225 ℜ𝔢𝔞𝔩𝔩𝔶 𝔠𝔬𝔬𝔩 𝔣𝔬𝔫𝔱, 𝔪𝔞𝔫. 
226 𝕀𝕗 𝕥𝕙𝕒𝕥'𝕤 𝕨𝕙𝕒𝕥 𝕪𝕠𝕦'𝕣𝕖 𝕚𝕟𝕥𝕠,
227 𝓟𝓮𝓻𝓼𝓸𝓷𝓪𝓵𝓵𝔂, 𝓘 𝓵𝓲𝓴𝓮 𝓪 𝓫𝓲𝓽 𝓸𝓯 𝓼𝓽𝔂𝓵𝓮. 𝓐𝓷𝓭 𝓬𝓵𝓪𝓼𝓼.
228 𝕭𝖚𝖙 𝕴 𝖉𝖔𝖓'𝖙 𝖍𝖆𝖛𝖊 𝖆 𝖇𝖚𝖌 𝖆𝖇𝖔𝖚𝖙 𝖎𝖙.
230 Καλημέρα!
232 test
234 I must **emphasise** this.
237 // more pointers
238     #include <iostream>
239     using namespace std;
240     
241     int main ()
242     {
243       int firstvalue = 5, secondvalue = 15;
244       int * p1, * p2;
245     
246       p1 = &firstvalue;  // p1 = address of firstvalue
247       p2 = &secondvalue; // p2 = address of secondvalue
248       *p1 = 10;          // value pointed to by p1 = 10
249       *p2 = *p1;         // value pointed to by p2 = value pointed to by p1
250       p1 = p2;           // p1 = p2 (value of pointer is copied)
251       *p1 = 20;          // value pointed to by p1 = 20
252       
253       cout << "firstvalue is " << firstvalue << '\n';
254       cout << "secondvalue is " << secondvalue << '\n';
255       return 0;
256     }