]> 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.
7 ===========
9 ~~~
10 Lorem ipsum dolor sit amet, consectetur adipiscing elit.
11 ~~~
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  ]]). Ikiwiki described on Wikipedia: [[!wikipedia Ikiwiki]].
29 vvvv
30 CamelCase ?
32 [[!tag sandbox tag2]]
34 What about [[this page]], nono better [[that page]]?
36 hello world (right back at ya)
38 wait how does versioning work
40 test, is it being saved? Probably. I will check. This seems really straightforward.
42 Hello!
44 ~~~
45 pre formated text?
46 ~~~
48 ```
49 testing markdown  
50     with leading    and enclosed spaces
51 ```
53 markdown `inline` single-backquotes?
55 # one
57 - foo
59 ## two {#alt-link-name-not-working}
61 - bar
63 ### trois
65 - blah
66     - more blah
68 #### quatre
70 ## bir
71 - bir
73 ## iki
74 - iki
76 * yildiz
77 ** cyildiz
79 - tire
80   - ctire
82 * *i dene*
83 * **b dene**
86 1. number
87 2. list
88     a. ick
89     b. bar
91 | table | here |
92 |----| ---- |
93 | test adfasdfasdfa | 2 |
94 | subtest | adfad|
96 Sort of formatted.. No borders, though.
99 > This is a blockquote.
101 > This is the first level of quoting.
102 A block of text
104 > > This is a nested blockquote.
106 >> Without a space works too.
107 >>> to three levels
109 This is pretty sweet
111 Azerty
112 ** Qsdf **
115 > Back to the first level.
117 > added a line in level 1
118 > and another
121 Numbered list 
123 1. First item.
124     1. Sub item.
125     1. Number 2
126 1. Another.
127 1. And another..
128     1. foo
129     2. bar
130     3. quz
131     3. quze
133 Bulleted list
135 * item
136 * *italic item*
137 * item
138 * one
139   * footballs; runner; unices
140   * Cool !
141     * test
142   * this
143 * something else
144   * some more
145   * and more
146     * and
147       * this
148 > a blockquote
149 > in a list
150 > how is this handled
151         *this  _ _ _
152       * this 2
153       * this 3
155 test _this_ out.
157 `test this code block`
158 [[!wikipedia War_of_1812]]
159 ----
161 [[!template id=note text="this is generated by the [[plugins/haiku]] plugin"]]
162 [[!haiku hint="sandbox play"]]
164 ----
166 ## Different sorts of links:
168 * [[Features]]
169 * <http://ikiwiki.info/ikiwiki/formatting/>
170 * [[different_name_for_a_WikiLink|ikiwiki/WikiLink]]
171 * <http://www.gnu.org/>
172 * [GNU](http://www.gnu.org/)
173 * <a href="http://kitenet.net/~joey/">Joey's blog</a>
175 ----
177 # header1
179 ## header2
181 ### header3
183 #### header4
185 ##### header 5
187 **bold**
189 _italic_
191 test ms
193 opopopo
194 ----
196 This **SandBox** is also a [[blog]]!
198 [[!inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]
200 Testy test!
203 <p>
204 This is an email link:
205 <a href="mailto:erik.josefsson@europarl.europa.eu?Subject=Hello%20again" target="_top">
206 Send Mail</a>
207 </p>
209 What follows is some preformatted text.  Each line is proceeded by four spaces.
211     Test
213     <Test>
215     <test>
216     <test>
218     <test>
219       <child />
220     </test>
222 ...Now why doesn't it work like that on my own copy of ikiwiki? :(
224 Räksmörgås.
226 `pre?`
228 Testing. Test. 試験として書き込みします。
229 ℜ𝔢𝔞𝔩𝔩𝔶 𝔠𝔬𝔬𝔩 𝔣𝔬𝔫𝔱, 𝔪𝔞𝔫. 
230 𝕀𝕗 𝕥𝕙𝕒𝕥'𝕤 𝕨𝕙𝕒𝕥 𝕪𝕠𝕦'𝕣𝕖 𝕚𝕟𝕥𝕠,
231 𝓟𝓮𝓻𝓼𝓸𝓷𝓪𝓵𝓵𝔂, 𝓘 𝓵𝓲𝓴𝓮 𝓪 𝓫𝓲𝓽 𝓸𝓯 𝓼𝓽𝔂𝓵𝓮. 𝓐𝓷𝓭 𝓬𝓵𝓪𝓼𝓼.
232 𝕭𝖚𝖙 𝕴 𝖉𝖔𝖓'𝖙 𝖍𝖆𝖛𝖊 𝖆 𝖇𝖚𝖌 𝖆𝖇𝖔𝖚𝖙 𝖎𝖙.
234 Καλημέρα!
236 test
238 I must **emphasise** this.
241 // more pointers
242     #include <iostream>
243     using namespace std;
244     
245     int main ()
246     {
247       int firstvalue = 5, secondvalue = 15;
248       int * p1, * p2;
249     
250       p1 = &firstvalue;  // p1 = address of firstvalue
251       p2 = &secondvalue; // p2 = address of secondvalue
252       *p1 = 10;          // value pointed to by p1 = 10
253       *p2 = *p1;         // value pointed to by p2 = value pointed to by p1
254       p1 = p2;           // p1 = p2 (value of pointer is copied)
255       *p1 = 20;          // value pointed to by p1 = 20
256       
257       cout << "firstvalue is " << firstvalue << '\n';
258       cout << "secondvalue is " << secondvalue << '\n';
259       return 0;
260     }
262 testeteset
264 Install ikiwiki
266 If you're using Debian or Ubuntu, ikiwiki is an apt-get install ikiwiki away. If you're not, see the download and install pages.
268 You may also want to try out IkiWiki in a container.