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