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