Creole Test
Bold And Italics
Bold
bold
Italics
italics
Bold Italics
Bold and italics should //be able// to cross lines.
But, should //not be...
...able// to cross paragraphs.
|
Bold and italics should
be able to cross lines.
But, should //not be...
...able// to cross paragraphs.
//**bold italics**// **//bold italics//** //This is **also** good.//
|
bold italics
bold italics
This is also good.
Bold and/or italic links
//[[Important page|this link is italic]]// **[[Important page]]** //**[[Important page]]**//
|
this link is italic
Important page
Important page
Bold, Italics, Links, Pre in Lists
* **bold** item * //italic// item # item about a [[certain page]] # {{{ //this// is **not** [[processed]] }}}
|
- item about a certain page
//this// is **not** [[processed]]
Headings
= Level 1 (largest) = == Level 2 == === Level 3 === ==== Level 4 ==== ===== Level 5 ===== ====== Level 6 ======
|
Level 1 (largest)
Level 2
Level 3
Level 4
Level 5
Level 6
=== Also level 3 === Also level 3 = === Also level 3 == === **not** //parsed// ===
|
Also level 3
Also level 3
Also level 3
**not** //parsed//
Unacceptable
== Heading with [[link]] == Heading with **bold** or //italics// == Heading with {{Image:image|image}} == Heading with placeholder
|
Heading with [[link]]
Heading with **bold** or //italics//
Heading with {{Image:image|image}}
Heading with placeholder
Links
link
[[MyBigPage|Go to my page]] |
Go to my page
[[http://www.wikicreole.org/]] |
http://www.wikicreole.org/
http://www.rawlink.org/, http://www.another.rawlink.org |
http://www.rawlink.org/,
http://www.another.rawlink.org
[[http://www.wikicreole.org/|Visit the WikiCreole website]] |
Visit the WikiCreole website
[[Weird Stuff|**Weird** //Stuff//]] |
Weird Stuff
Ohana:WikiFamily
Paragraphs
This is my text.
This is more text.
|
This is my text.
This is more text.
Line Breaks
This is the first line,\\and this is the second.
|
This is the first line,
and this is the second.
Lists
Unordered Lists
Ordered Lists
- Item 1
- Item 2
Nesting
* Item 1 * Item 2 ** Item 2.1 ** Item 2.2
|
Mixing
* Item 1 * Item 2 ## Item 2.1 ## Item 2.2
|
- Item 1
- Item 2
- Item 2.1
- Item 2.2
Leading Whitespace
* Item 1 * Item 2 ** Item 2.1 ** Item 2.2
|
Horizontal Line
Images
{{myimage.jpg|this is the alt text for my image}} |
[[some link|{{myimage.jpg}}]] - if you click on the image, will goto "some link" |

- if you click on the image, will goto "some link"
[[http://example.com/|{{myimage.jpg}}]] - same as above: picture links to url |

- same as above: picture links to url
Tables
|=Heading Col 1 |=Heading Col 2 | |Cell 1.1 |Two lines\\in Cell 1.2 | |Cell 2.1 |Cell 2.2 |
|
Heading Col 1 | Heading Col 2 |
---|
Cell 1.1 | Two lines
in Cell 1.2 |
Cell 2.1 | Cell 2.2 |
Simple table
|Cell 1.1 |Cell 1.2 |Cell 2.1 |Cell 2.2
|
Cell 1.1 | Cell 1.2 |
Cell 2.1 | Cell 2.2 |
Table rows ending with | are optional.
|Cell 1.1 | Cell 1.2 | |Cell 2.1 | Cell 2.2 |
|
Cell 1.1 | Cell 1.2 |
Cell 2.1 | Cell 2.2 |
Table with heading
|=Heading Col 1 |=Heading Col 2 |Cell 1.1 |Cell 1.2 |Cell 2.1 |Cell 2.2
|
Heading Col 1 | Heading Col 2 |
---|
Cell 1.1 | Cell 1.2 |
Cell 2.1 | Cell 2.2 |
Table with forced line break using the \\ syntax
|=Heading Col 1 |= Heading Col 2 |Cell 1.1 line one \\ Cell 1.1 line two | Cell 1.2
|
Heading Col 1 | Heading Col 2 |
---|
Cell 1.1 line one
Cell 1.1 line two | Cell 1.2 |
Preformatted And Nowiki
{{{ //This// does **not** get [[formatted]] }}}
|
//This// does **not** get [[formatted]]
Some examples of markup are: {{{** <i>this</i> ** }}}
|
Some examples of markup are:
** <i>this</i> **
Closing braces in nowiki
{{{ {{if (a>b) { b = a; }}} }}}
|
{{if (a>b) { b = a; }}}
{{{ if (x != NULL) { for (i = 0; i < size; i++) { if (x[i] > 0) { x[i]--; }}} }}}
|
if (x != NULL) {
for (i = 0; i < size; i++) {
if (x[i] > 0) {
x[i]--;
}}}
Escape
~#1 http://www.foo.com/~bar/ ~http://www.foo.com/ CamelCaseLink ~CamelCaseLink
|
#1
http://www.foo.com/~bar/ http://www.foo.com/
CamelCaseLink
CamelCaseLink
Placeholder
Creole Additions
Plug-in/Extension
<<CurrentTimePlugin format='yyyy.MM.dd'>>
|
yyyy.MM.dd
Monospace
This is ##monospace## text.
|
This is
monospace text.
Superscript
This is ^^superscripted^^ text.
|
This is
superscripted text.
Subscript
This is ,,subscripted,, text.
|
This is
subscripted text.
Underline
This is __underlined__ text.
|
This is
underlined text.
Alternate Link Syntax
[[description -> link]] [[the -> can be used to make a link -> TextFormattingRules]]
|
description
the -> can be used to make a link
Indented paragraphs
This is a normal paragraph. :This is an indented paragraph in two lines. ::This is more indented.
|
This is a normal paragraph.
- This is an indented paragraph in two lines.
- This is more indented.
This is a normal paragraph. >This is an indented paragraph in two lines. >>This is more indented.
|
This is a normal paragraph.
- This is an indented paragraph in two lines.
- This is more indented.
Definition lists
; First title of definition list : Definition of first item. ; Second title : Second definition beginning on the same line.
|
- First title of definition list
- Definition of first item.
- Second title
- Second definition beginning on the same line.