]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/sandbox.mdwn
Add patch to fix OSM plugin KML for Google Maps/Earth
[git.ikiwiki.info.git] / doc / sandbox.mdwn
1 # Sandbox
3 [[!pagestats  pages="/tags/*"]]
5 Hello, ikiwiki.
7 Testing.
9 [[!sidebar ]]
11 Here's a hr:
13 ---------------------------------------------------------
15 ## number 2
16 ### number 3
17 #### number 4
19 This is the SandBox, a page anyone can edit to try out ikiwiki
20 (version [[!version  ]]).
22 [[!toc levels=1 startlevel=2 ]]
24 ## Blockquotes
26 > This is a blockquote.
27 >
28 > This is the first level of quoting.
29 >
30 > > This is a nested blockquote.
31 >
32 >> Without a space works too.
33 >>> to three levels
34 >
35 > Back to the first level.
37 > It's kinda like e-mail...
38 >> ...but without the cool colored lines...
39 >>> ...and different font colors.
40 >>>> ...but it's nothing a little CSS can't fix.
42 # Pointless heading
44 Let's see a table:
46 [[!table data="""
47 Heading 1|Heading 2|Heading 3
48 Item 1| Item 2| Item 3"""]]
51 Numbered list 
53 1. First item.
54  1. Sub item.
55 1. Another.
56 1. And another..
57  1. foo
58  2. bar
59  3. quz
61 Bulleted list
63 * item
64 * *item*
65 * item
66 * one
67   * footballs; runner; unices
68   * Cool !
69   * Indeed.
71 [[new link]]
73 ----
75 [[!template id=note text="this is generated by the [[plugins/haiku]] plugin"]]
76 [[!haiku hint="sandbox play"]]
78 ----
80 ## Different sorts of links:
82 * [[Features]]
83 * <http://ikiwiki.info/ikiwiki/formatting/>
84 * [[different_name_for_a_WikiLink|ikiwiki/WikiLink]]
85 * <http://www.gnu.org/>
86 * [GNU](http://www.gnu.org/)
87 * <a href="http://kitenet.net/~joey/">Joey's blog</a>
89 ----
91 # header1
93 ## header2
95 ### header3
97 #### header4
99 ##### header 5
101 **bold**
103 _italic_
106 Umcacaumca
108 ### this shows a problem with the list and the verbatim 
110 Now we try to write a "code" block starting with a hash sign
112     # test 1,2,3
113     $ another test
116 Oh, let's try to do the same thing using sane syntax instead:
118 ~~~
119 # test 1,2,3
120 $ another test
121 ~~~
123 Now let's write the same block, with a bullest list preceding it.
126 * This is a bullet list
128     # test 1,2,3
129     $ another test
132 ----
134 Test some tags
135 [[!tag  tech life linux]]
136 [[!taglink tech life linux]]
138 Toggle:
139 [[!toggle  id="ipsum" text="show"]]
141 [[!toggleable  id="ipsum" text="""
142 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
143 eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
144 ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
145 aliquip ex ea commodo consequat.
147 [[!toggle id="ipsum" text="hide"]]
148 """]]
149 ----
151 This **SandBox** is also a [[blog]]! xxx
153 [[!inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]a
155 [[!format  verilog """
156 module vc_Mux2 #( parameter W = 1 )
158   input      [W-1:0] in0, in1,
159   input              sel,
160   output reg [W-1:0] out
161 );
163   always @(*)
164   begin
165     case ( sel )
166       1'd0 : out = in0;
167       1'd1 : out = in1;
168       default : out = {W{1'bx}};
169     endcase
170   end
172 endmodule
173 """]]