]> 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 Why doesn't the following work?..
4 [[!color  foreground=white background=#ff0000 text="White text on red background"]]
6 Sure it is.sss
7 ===========
9 I hope baby.
11 Nope my friend.
13 List:
15 * thing 1
16 * thing 2 [[test page space allowed]]
17 * thing 3
18 * * sublist a? [[TestPage]]
19 * * sublist b [[testpage]]
20 * thing 4
24 [[!meta date="Thu Jun 16 22:04:33 2005" updated="Thu Dec 22 01:23:20 2011"]]
26 This is the [[SandBox]], a page anyone can edit to try out ikiwiki
27 (version [[!version  ]]).
28 vvvv
29 CamelCase ?
31 [[!tag sandbox tag2]]
33 What about [[this page]], nono better [[that page]]?
35 hello world (right back at ya)
37 wait how does versioning work
39 test, is it being saved? Probably. I will check. This seems really straightforward.
41 Hello!
43 ~~~
44 pre formated text?
45 ~~~
47 ```
48 testing markdown  
49     with leading    and enclosed spaces
50 ```
52 markdown `inline` single-backquotes?
54 # one
56 - foo
58 ## two
60 - bar
62 ### trois
64 - blah
65     - more blah
67 #### quatre
69 ## bir
70 - bir
72 ## iki
73 - iki
75 * yildiz
76 ** cyildiz
78 - tire
79   - ctire
81 * *i dene*
82 * **b dene**
85 1. number
86 2. list
87     a. ick
88     b. bar
90 | table | here |
91 |----| ---- |
92 | test adfasdfasdfa | 2 |
93 | subtest | adfad|
95 Sort of formatted.. No borders, though.
98 > This is a blockquote.
99 >
100 > This is the first level of quoting.
101 A block of text
103 > > This is a nested blockquote.
105 >> Without a space works too.
106 >>> to three levels
108 This is pretty sweet
110 Azerty
111 ** Qsdf **
114 > Back to the first level.
116 > added a line in level 1
117 > and another
120 Numbered list 
122 1. First item.
123     1. Sub item.
124     1. Number 2
125 1. Another.
126 1. And another..
127     1. foo
128     2. bar
129     3. quz
130     3. quze
132 Bulleted list
134 * item
135 * *italic item*
136 * item
137 * one
138   * footballs; runner; unices
139   * Cool !
140     * test
141   * this
142 * something else
143   * some more
144   * and more
145     * and
146       * this
147 > a blockquote
148 > in a list
149 > how is this handled
150         *this  _ _ _
151       * this 2
152       * this 3
154 test _this_ out.
156 `test this code block`
157 [[!wikipedia War_of_1812]]
158 ----
160 [[!template id=note text="this is generated by the [[plugins/haiku]] plugin"]]
161 [[!haiku hint="sandbox play"]]
163 ----
165 ## Different sorts of links:
167 * [[Features]]
168 * <http://ikiwiki.info/ikiwiki/formatting/>
169 * [[different_name_for_a_WikiLink|ikiwiki/WikiLink]]
170 * <http://www.gnu.org/>
171 * [GNU](http://www.gnu.org/)
172 * <a href="http://kitenet.net/~joey/">Joey's blog</a>
174 ----
176 # header1
178 ## header2
180 ### header3
182 #### header4
184 ##### header 5
186 **bold**
188 _italic_
190 test ms
192 opopopo
193 ----
195 This **SandBox** is also a [[blog]]!
197 [[!inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]
199 Testy test!
202 <p>
203 This is an email link:
204 <a href="mailto:erik.josefsson@europarl.europa.eu?Subject=Hello%20again" target="_top">
205 Send Mail</a>
206 </p>
208 What follows is some preformatted text.  Each line is proceeded by four spaces.
210     Test
212     <Test>
214     <test>
215     <test>
217     <test>
218       <child />
219     </test>
221 ...Now why doesn't it work like that on my own copy of ikiwiki? :(
223 Räksmörgås.
225 `pre?`
227 Testing. Test. 試験として書き込みします。
228 ℜ𝔢𝔞𝔩𝔩𝔶 𝔠𝔬𝔬𝔩 𝔣𝔬𝔫𝔱, 𝔪𝔞𝔫. 
229 𝕀𝕗 𝕥𝕙𝕒𝕥'𝕤 𝕨𝕙𝕒𝕥 𝕪𝕠𝕦'𝕣𝕖 𝕚𝕟𝕥𝕠,
230 𝓟𝓮𝓻𝓼𝓸𝓷𝓪𝓵𝓵𝔂, 𝓘 𝓵𝓲𝓴𝓮 𝓪 𝓫𝓲𝓽 𝓸𝓯 𝓼𝓽𝔂𝓵𝓮. 𝓐𝓷𝓭 𝓬𝓵𝓪𝓼𝓼.
231 𝕭𝖚𝖙 𝕴 𝖉𝖔𝖓'𝖙 𝖍𝖆𝖛𝖊 𝖆 𝖇𝖚𝖌 𝖆𝖇𝖔𝖚𝖙 𝖎𝖙.
233 Καλημέρα!
235 test
237 I must **emphasise** this.
240 // more pointers
241     #include <iostream>
242     using namespace std;
243     
244     int main ()
245     {
246       int firstvalue = 5, secondvalue = 15;
247       int * p1, * p2;
248     
249       p1 = &firstvalue;  // p1 = address of firstvalue
250       p2 = &secondvalue; // p2 = address of secondvalue
251       *p1 = 10;          // value pointed to by p1 = 10
252       *p2 = *p1;         // value pointed to by p2 = value pointed to by p1
253       p1 = p2;           // p1 = p2 (value of pointer is copied)
254       *p1 = 20;          // value pointed to by p1 = 20
255       
256       cout << "firstvalue is " << firstvalue << '\n';
257       cout << "secondvalue is " << secondvalue << '\n';
258       return 0;
259     }