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