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