(no commit message)
[ikiwiki] / doc / sandbox.mdwn
1 # Sandbox
2
3 [[!pagestats  pages="/tags/*"]]
4
5 Hello, ikiwiki.
6
7 [[!sidebar ]]
8
9
10 ## number 2
11 ### number 3
12
13 This is the SandBox, a page anyone can edit to try out ikiwiki
14 (version [[!version  ]]).
15
16 [[!toc levels=1 startlevel=2 ]]
17
18 See, online editing :-p
19
20 Let's try this~!
21
22 w00t, how does this look on the **git** end? Well, as a commit of course.
23
24 Testing this sandbox thing.
25
26 Awesome :P
27
28 ## Blockquotes
29
30 > This is a blockquote.
31 >
32 > This is the first level of quoting.
33 >
34 > > This is a nested blockquote.
35 >
36 >> Without a space works too.
37 >>> to three levels
38 >
39 > Back to the first level.
40
41 > It's kinda like e-mail...
42 >> ...but without the cool colored lines...
43 >>> ...and different font colors.
44 >>>> ...but it's nothing a little CSS can't fix.
45
46 # Pointless heading
47
48 Let's see a table:
49
50 [[!table data="""
51 Heading 1|Heading 2|Heading 3
52 Item 1| Item 2| Item 3"""]]
53
54
55 Numbered list 
56
57 1. First item.
58  1. Sub item.
59 1. Another.
60 1. And another..
61  1. foo
62  2. bar
63  3. quz
64
65 Bulleted list
66
67 * item
68 * *item*
69 * item
70 * one
71   * footballs; runner; unices
72   * Cool !
73   * Indeed.
74
75 [[new link]]
76
77 ----
78
79 [[!template id=note text="this is generated by the [[plugins/haiku]] plugin"]]
80 [[!haiku hint="sandbox play"]]
81
82 ----
83
84 ## Different sorts of links:
85
86 * [[Features]]
87 * <http://ikiwiki.info/ikiwiki/formatting/>
88 * [[different_name_for_a_WikiLink|ikiwiki/WikiLink]]
89 * <http://www.gnu.org/>
90 * [GNU](http://www.gnu.org/)
91 * <a href="http://kitenet.net/~joey/">Joey's blog</a>
92
93 ----
94
95 # header1
96
97 ## header2
98
99 ### header3
100
101 #### header4
102
103 ##### header 5
104
105 **bold**
106
107 _italic_
108
109
110 Umcacaumca
111
112 ### this shows a problem with the list and the verbatim 
113
114 Now we try to write a "code" block starting with a hash sign
115
116     # test 1,2,3
117     $ another test
118
119
120 Oh, let's try to do the same thing using sane syntax instead:
121
122 ~~~
123 # test 1,2,3
124 $ another test
125 ~~~
126
127 Now let's write the same block, with a bullest list preceding it.
128
129
130 * This is a bullet list
131
132     # test 1,2,3
133     $ another test
134
135
136 ----
137
138 Test some tags
139 [[!tag  tech life linux]]
140 [[!taglink tech life linux]]
141
142 Toggle:
143 [[!toggle  id="ipsum" text="show"]]
144
145 [[!toggleable  id="ipsum" text="""
146 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
147 eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
148 ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
149 aliquip ex ea commodo consequat.
150
151 [[!toggle id="ipsum" text="hide"]]
152 """]]
153 ----
154
155 This **SandBox** is also a [[blog]]! xxx
156
157 [[!inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]a
158
159 [[!format  verilog """
160 module vc_Mux2 #( parameter W = 1 )
161 (
162   input      [W-1:0] in0, in1,
163   input              sel,
164   output reg [W-1:0] out
165 );
166
167   always @(*)
168   begin
169     case ( sel )
170       1'd0 : out = in0;
171       1'd1 : out = in1;
172       default : out = {W{1'bx}};
173     endcase
174   end
175
176 endmodule
177 """]]
178
179 #<asd>
180
181 This is simple enough for now [[sandbocen]] no?
182
183     Do code tags work?
184
185 test by max
186
187 test by bbb
188
189
190 Can I make a [[NewPage]]?