3 [[!pagestats pages="/tags/*"]]
13 ---------------------------------------------------------
19 This is the SandBox, a page anyone can edit to try out ikiwiki
20 (version [[!version ]]).
22 [[!toc levels=1 startlevel=2 ]]
26 > This is a blockquote.
28 > This is the first level of quoting.
30 > > This is a nested blockquote.
32 >> Without a space works too.
35 > Back to the first level.
37 > It's kinda like e-mail...
38 >> ...but without the cool colored lines...
39 >>> ...and different font colors.
40 >>>> ...but it's nothing a little CSS can't fix.
47 Heading 1|Heading 2|Heading 3
48 Item 1| Item 2| Item 3"""]]
51 proxy_pass http://test.ashep:80;
53 proxy_cache_valid 200 302 10m;
54 proxy_cache_valid 404 1m;
76 * footballs; runner; unices
84 [[!template id=note text="this is generated by the [[plugins/haiku]] plugin"]]
85 [[!haiku hint="sandbox play"]]
89 ## Different sorts of links:
92 * <http://ikiwiki.info/ikiwiki/formatting/>
93 * [[different_name_for_a_WikiLink|ikiwiki/WikiLink]]
94 * <http://www.gnu.org/>
95 * [GNU](http://www.gnu.org/)
96 * <a href="http://kitenet.net/~joey/">Joey's blog</a>
117 ### this shows a problem with the list and the verbatim
119 Now we try to write a "code" block starting with a hash sign
125 Oh, let's try to do the same thing using sane syntax instead:
132 Now let's write the same block, with a bullest list preceding it.
135 * This is a bullet list
144 [[!tag tech life linux]]
145 [[!taglink tech life linux]]
148 [[!toggle id="ipsum" text="show"]]
150 [[!toggleable id="ipsum" text="""
151 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
152 eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
153 ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
154 aliquip ex ea commodo consequat.
156 [[!toggle id="ipsum" text="hide"]]
160 This **SandBox** is also a [[blog]]! xxx
162 [[!inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]a
164 [[!format verilog """
165 module vc_Mux2 #( parameter W = 1 )
167 input [W-1:0] in0, in1,
169 output reg [W-1:0] out
177 default : out = {W{1'bx}};