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