4 [[!sidebar content="dfdsfsf""
5 This is my custom sidebar for this page.
7 \[[!calendar pages="posts/*"]]
14 This is the [[SandBox]], a page anyone can edit to try out ikiwiki
15 (version [[!version ]]).
17 [[!toc levels=1 startlevel=2 ]]
21 w00t, how does this look on the **git** end? Well, as a commit of course.
23 Testing this sandbox thing.
27 > This is a blockquote.
29 > This is the first level of quoting.
31 > > This is a nested blockquote.
33 >> Without a space works too.
36 > Back to the first level.
38 > It's kinda like e-mail...
39 >> ...but without the cool colored lines...
40 >>> ...and different font colors.
41 >>>> ...but it's nothing a little CSS can't fix.
59 * footballs; runner; unices
66 [[!template id=note text="this is generated by the [[plugins/haiku]] plugin"]]
67 [[!haiku hint="sandbox play"]]
71 ## Different sorts of links:
74 * <http://ikiwiki.info/ikiwiki/formatting/>
75 * [[different_name_for_a_WikiLink|ikiwiki/WikiLink]]
76 * <http://www.gnu.org/>
77 * [GNU](http://www.gnu.org/)
78 * <a href="http://kitenet.net/~joey/">Joey's blog</a>
98 ### this shows a problem with the list and the verbatim
100 Now we try to write a "code" block starting with a hash sign
106 Now let's write the same block, with a bullest list preceding it.
109 * This is a bullet list
118 [[!tag tech life linux]]
119 [[!taglink tech life linux]]
122 [[!toggle id="ipsum" text="show"]]
124 [[!toggleable id="ipsum" text="""
125 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
126 eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
127 ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
128 aliquip ex ea commodo consequat.
130 [[!toggle id="ipsum" text="hide"]]
134 This **SandBox** is also a [[blog]]! xxx
136 [[!inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]a
138 [[!format verilog """
139 module vc_Mux2 #( parameter W = 1 )
141 input [W-1:0] in0, in1,
143 output reg [W-1:0] out
151 default : out = {W{1'bx}};