Wiki source code of Main

Version 3.1 by Ludovic Dubost on 2008/09/09 12:14

Show last authors
1 =Wiki Creole Sandbox
2
3 = Top-level heading (1)
4 == This a test for creole 0.1 (2)
5 === This is a Subheading (3)
6 ==== Subsub (4)
7 ===== Subsubsub (5)
8
9 The ending equal signs should not be displayed:
10
11 = Top-level heading (1) =
12 == This a test for creole 0.1 (2) ==
13 === This is a Subheading (3) ===
14 ==== Subsub (4) ====
15 ===== Subsubsub (5) =====
16
17 You can make things **bold** or //italic// or **//both//** or //**both**//.
18
19 Character formatting extends across line breaks: **bold,
20 this is still bold. This line deliberately does not end in star-star.
21
22 Not bold. Character formatting does not cross paragraph boundaries.
23
24 You can use [[internal links]] or [[http://www.wikicreole.org|external links]],
25 give the link a [[internal links|different]] name.
26
27 Here's another sentence: This wisdom is taken from [[Ward Cunningham's]]
28 [[http://www.c2.com/doc/wikisym/WikiSym2006.pdf|Presentation at the Wikisym 06]].
29
30 Here's a external link without a description: [[http://www.wikicreole.org]]
31
32 Be careful that italic links are rendered properly: //[[http://my.book.example/|My Book Title]]//
33
34 Free links without braces should be rendered as well, like http://www.wikicreole.org/ and http://www.wikicreole.org/users/~example.
35
36 Creole1.0 specifies that http://bar and ftp://bar should not render italic,
37 something like foo://bar should render as italic.
38
39 You can use this to draw a line to separate the page:
40 ----
41
42 You can use lists, start it at the first column for now, please...
43
44 unnumbered lists are like
45 * item a
46 * item b
47 * **bold item c**
48
49 blank space is also permitted before lists like:
50 * item a
51 * item b
52 * item c
53 ** item c.a
54
55 or you can number them
56 # [[item 1]]
57 # item 2
58 # // italic item 3 //
59 ## item 3.1
60 ## item 3.2
61
62 up to five levels
63 * 1
64 ** 2
65 *** 3
66 **** 4
67 ***** 5
68
69 * You can have
70 multiline list items
71 * this is a second multiline
72 list item
73
74 You can use nowiki syntax if you would like do stuff like this:
75
76 {{{
77 Guitar Chord C:
78
79 ||---|---|---|
80 ||-0-|---|---|
81 ||---|---|---|
82 ||---|-0-|---|
83 ||---|---|-0-|
84 ||---|---|---|
85 ~}}}
86
87 Note: if you look at the source code of the above, you see the escape char (tilde, ~ )
88 being used to escape the closing triple curly braces. This is to do nowiki nesting in this
89 wiki which doesn't follow Creole 1.0 yet (closing triple curly braces should be indented
90 by one space).
91
92 You can also use it inline nowiki {{{ in a sentence ~}}} like this.
93
94 = Escapes =
95 Normal Link: http://wikicreole.org/ - now same link, but escaped: ~http://wikicreole.org/
96
97 Normal asterisks: ~**not bold~**
98
99 a tilde alone: ~
100
101 a tilde escapes itself: ~~xxx
102
103 === Creole 0.2 ===
104
105 This should be a flower with the ALT text "this is a flower" if your wiki supports ALT text on images:
106
107 {{Red-Flower.jpg|here is a red flower}}
108
109 === Creole 0.4 ===
110
111 Tables are done like this:
112
113 |=header col1|=header col2|
114 |col1|col2|
115 |you |can |
116 |also |align\\ it. |
117
118 You can format an address by simply forcing linebreaks:
119
120 My contact dates:\\
121 Pone: xyz\\
122 Fax: +45\\
123 Mobile: abc
124
125 === Creole 0.5 ===
126
127 |= Header title |= Another header title |
128 | {{{ //not italic text// ~}}} | {{{ **not bold text** ~}}} |
129 | //italic text// | ** bold text ** |
130
131 === Creole 1.0 ===
132
133 If interwiki links are setup in your wiki, this links to the WikiCreole page about Creole 1.0 test cases: [[WikiCreole:Creole1.0TestCases]].