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