]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/sandbox.mdwn
(no commit message)
[git.ikiwiki.info.git] / doc / sandbox.mdwn
1 # Sandbox
3 [[!pagestats  pages="/tags/*"]]
5 Hello, ikiwiki.
7 [[!sidebar ]]
10 ## number 2
11 ### number 3
13 This is the SandBox, a page anyone can edit to try out ikiwiki
14 (version [[!version  ]]).
16 [[!toc levels=1 startlevel=2 ]]
18 See, online editing :-p
20 Let's try this~!
22 w00t, how does this look on the **git** end? Well, as a commit of course.
24 Testing this sandbox thing.
26 Awesome :P
28 ## Blockquotes
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.
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.
46 # Pointless heading
48 Let's see a table:
50 [[!table data="""
51 Heading 1|Heading 2|Heading 3
52 Item 1| Item 2| Item 3"""]]
55 Numbered list 
57 1. First item.
58  1. Sub item.
59 1. Another.
60 1. And another..
61  1. foo
62  2. bar
63  3. quz
65 Bulleted list
67 * item
68 * *item*
69 * item
70 * one
71   * footballs; runner; unices
72   * Cool !
73   * Indeed.
75 [[new link]]
77 ----
79 [[!template id=note text="this is generated by the [[plugins/haiku]] plugin"]]
80 [[!haiku hint="sandbox play"]]
82 ----
84 ## Different sorts of links:
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>
93 ----
95 # header1
97 ## header2
99 ### header3
101 #### header4
103 ##### header 5
105 **bold**
107 _italic_
110 Umcacaumca
112 ### this shows a problem with the list and the verbatim 
114 Now we try to write a "code" block starting with a hash sign
116     # test 1,2,3
117     $ another test
120 Oh, let's try to do the same thing using sane syntax instead:
122 ~~~
123 # test 1,2,3
124 $ another test
125 ~~~
127 Now let's write the same block, with a bullest list preceding it.
130 * This is a bullet list
132     # test 1,2,3
133     $ another test
136 ----
138 Test some tags
139 [[!tag  tech life linux]]
140 [[!taglink tech life linux]]
142 Toggle:
143 [[!toggle  id="ipsum" text="show"]]
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.
151 [[!toggle id="ipsum" text="hide"]]
152 """]]
153 ----
155 This **SandBox** is also a [[blog]]! xxx
157 [[!inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]a
159 [[!format  verilog """
160 module vc_Mux2 #( parameter W = 1 )
162   input      [W-1:0] in0, in1,
163   input              sel,
164   output reg [W-1:0] out
165 );
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
176 endmodule
177 """]]
179 #<asd>
181 This is simple enough for now [[sandbocen]] no?
183     Do code tags work?
185 test by max
187 test by bbb
190 Can I make a [[NewPage]]?