]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/sandbox.mdwn
(no commit message)
[git.ikiwiki.info.git] / doc / sandbox.mdwn
1 ###Is this a heading? 
3 Sure it is. 
5 Nope my friend.
7 List:
9 * thing 1
10 * thing 2 [[test page space allowed]]
11 * thing 3
12 * * sublist a? [[TestPage]]
13 * * sublist b [[testpage]]
14 * thing 4
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  ]]).
22 vvvv
23 CamelCase ?
25 [[!tag sandbox tag2]]
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.
35 Hello!
37 ~~~
38 pre formated text?
39 ~~~
41 ```
42 testing markdown  
43     with leading    and enclosed spaces
44 ```
46 markdown `inline` single-backquotes?
48 # one
50 - foo
52 ## two
54 - bar
56 ### trois
58 - blah
59     - more blah
61 #### quatre
63 ## bir
64 - bir
66 ## iki
67 - iki
69 * yildiz
70 ** cyildiz
72 - tire
73   - ctire
75 * *i dene*
76 * **b dene**
79 1. number
80 2. list
81     a. ick
82     b. bar
84 | table | here |
85 |----| ---- |
86 | test adfasdfasdfa | 2 |
87 | subtest | adfad|
89 Sort of formatted.. No borders, though.
92 > This is a blockquote.
93 >
94 > This is the first level of quoting.
95 A block of text
96 >
97 > > This is a nested blockquote.
98 >
99 >> Without a space works too.
100 >>> to three levels
102 This is pretty sweet
104 Azerty
105 ** Qsdf **
108 > Back to the first level.
110 > added a line in level 1
111 > and another
114 Numbered list 
116 1. First item.
117     1. Sub item.
118     1. Number 2
119 1. Another.
120 1. And another..
121     1. foo
122     2. bar
123     3. quz
124     3. quze
126 Bulleted list
128 * item
129 * *italic item*
130 * item
131 * one
132   * footballs; runner; unices
133   * Cool !
134     * test
135   * this
136 * something else
137   * some more
138   * and more
139     * and
140       * this
141 > a blockquote
142 > in a list
143 > how is this handled
144         *this  _ _ _
145       * this 2
146       * this 3
148 test _this_ out.
150 `test this code block`
151 [[!wikipedia War_of_1812]]
152 ----
154 [[!template id=note text="this is generated by the [[plugins/haiku]] plugin"]]
155 [[!haiku hint="sandbox play"]]
157 ----
159 ## Different sorts of links:
161 * [[Features]]
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>
168 ----
170 # header1
172 ## header2
174 ### header3
176 #### header4
178 ##### header 5
180 **bold**
182 _italic_
184 test ms
186 opopopo
187 ----
189 This **SandBox** is also a [[blog]]!
191 [[!inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]
193 Testy test!
196 <p>
197 This is an email link:
198 <a href="mailto:erik.josefsson@europarl.europa.eu?Subject=Hello%20again" target="_top">
199 Send Mail</a>
200 </p>
202 What follows is some preformatted text.  Each line is proceeded by four spaces.
204     Test
206     <Test>
208     <test>
209     <test>
211     <test>
212       <child />
213     </test>
215 ...Now why doesn't it work like that on my own copy of ikiwiki? :(
217 Räksmörgås.
219 `pre?`
221 Testing. Test. 試験として書き込みします。
222 ℜ𝔢𝔞𝔩𝔩𝔶 𝔠𝔬𝔬𝔩 𝔣𝔬𝔫𝔱, 𝔪𝔞𝔫. 
223 𝕀𝕗 𝕥𝕙𝕒𝕥'𝕤 𝕨𝕙𝕒𝕥 𝕪𝕠𝕦'𝕣𝕖 𝕚𝕟𝕥𝕠,
224 𝓟𝓮𝓻𝓼𝓸𝓷𝓪𝓵𝓵𝔂, 𝓘 𝓵𝓲𝓴𝓮 𝓪 𝓫𝓲𝓽 𝓸𝓯 𝓼𝓽𝔂𝓵𝓮. 𝓐𝓷𝓭 𝓬𝓵𝓪𝓼𝓼.
225 𝕭𝖚𝖙 𝕴 𝖉𝖔𝖓'𝖙 𝖍𝖆𝖛𝖊 𝖆 𝖇𝖚𝖌 𝖆𝖇𝖔𝖚𝖙 𝖎𝖙.
227 Καλημέρα!
229 test
231 I must **emphasise** this.
234 // more pointers
235     #include <iostream>
236     using namespace std;
237     
238     int main ()
239     {
240       int firstvalue = 5, secondvalue = 15;
241       int * p1, * p2;
242     
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
249       
250       cout << "firstvalue is " << firstvalue << '\n';
251       cout << "secondvalue is " << secondvalue << '\n';
252       return 0;
253     }