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