============================================================
Font styles for Creole 1.0
============================== Bold
**bold**
------------------------------
bold
------------------------------
============================== Italics
//italics//
------------------------------
italics
------------------------------
============================== Bold and 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.
------------------------------
============================== More Bold Italics (SKIP)
**//bold italics//**
//**bold italics**//
//This is **also** good.//
------------------------------
bold italics
bold italics
This is also good.
------------------------------
============================== More Bold Italics
**//bold italics//**
//**bold italics**//
//This is **also** good.//
------------------------------
bold italics
bold italics
This is also good.
------------------------------
============================== Bold Italics counter examples
**//bold italics**//
//**bold italics//**
------------------------------
bold italics
bold italics
------------------------------
============================== Headings (WONTFIX)
= Level 1 (largest) =
== Level 2 ==
=== Level 3 ===
==== Level 4 ====
===== Level 5 =====
====== Level 6 ======
=== Also level 3
=== Also level 3 =
=== Also level 3 ==
=== **not** //parsed// ===
------------------------------
Level 1 (largest)
Level 2
Level 3
Level 4
Level 5
Level 6
Also level 3
Also level 3
Also level 3
**not** //parsed//
------------------------------
============================== Headings (wikified headings + ids)
= Level 1 (largest) =
== Level 2 ==
=== Level 3 ===
==== Level 4 ====
===== Level 5 =====
====== Level 6 ======
=== Also level 3
=== Also level 3 =
=== Also level 3 ==
=== **not** //parsed// ===
------------------------------
Level 1 (largest)
Level 2
Level 3
Level 4
Level 5
Level 6
Also level 3
Also level 3 =
Also level 3 ==
not parsed
------------------------------
============================== Links - Internal, External and Interwiki (SKIP)
[[link]]
[[MyBigPage|Go to my page]]
[[http://www.wikicreole.org/]]
http://www.rawlink.org/, http://www.another.rawlink.org
[[http://www.wikicreole.org/|Visit the WikiCreole website]]
[[Weird Stuff|**Weird** //Stuff//]]
[[Ohana:WikiFamily]]
------------------------------
link
Go to my page
http://www.wikicreole.org/
http://www.rawlink.org/, http://www.another.rawlink.org
Visit the WikiCreole website
**Weird** //Stuff//
Ohana:WikiFamily
------------------------------
============================== Links - Internal, External and Interwiki
[[link]]
[[MyBigPage|Go to my page]]
[[ticket:12536|""]]
[[http://www.wikicreole.org/]]
http://www.rawlink.org/, http://www.another.rawlink.org
[[http://www.wikicreole.org/|Visit the WikiCreole website]]
[[Weird Stuff|**Weird** //Stuff//]]
[[trac:WikiFamily]]
[[TRAC:WikiFamily]]
------------------------------
link
Go to my page
http://www.wikicreole.org/
http://www.rawlink.org/, http://www.another.rawlink.org
Visit the WikiCreole website
**Weird** //Stuff//
WikiFamily
WikiFamily
============================================================
Structural Markup for Creole 1.0
============================== 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.
------------------------------
============================== Unordered Lists (SKIP)
* Item 1
** Item 1.1
* Item 2
------------------------------
------------------------------
============================== Ordered Lists (SKIP)
# Item 1
## Item 1.1
# Item 2
------------------------------
- Item 1
- Item 1.1
- Item 2
------------------------------
============================== Horizontal Rule
----
------------------------------
------------------------------
============================== Image (inline) (SKIP)
{{myimage.png|this is my image}}
------------------------------
------------------------------
============================== Tables (SKIP)
|=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 |
------------------------------
============================== Nowiki (Preformatted)
{{{
//This// does **not** get [[formatted]]
}}}
Paragraph
------------------------------
//This// does **not** get [[formatted]]
Paragraph
============================== Nowiki (inline)
Some examples of markup are: {{{** this ** }}}
------------------------------
Some examples of markup are: ** <em>this</em> **
------------------------------
============================== Closing braces in nowiki (WONTFIX)
{{{
if (x != NULL) {
for (i = 0; i < size; i++) {
if (x[i] > 0) {
x[i]--;
}}}
}}}
------------------------------
============================================================
Miscellaneous syntax for Creole 1.0
============================== Escape Character (SKIP)
~#1
http://www.foo.com/~bar/
~http://www.foo.com/
CamelCaseLink
~CamelCaseLink
Example output:
------------------------------
#1
http://www.foo.com/~bar/
http://www.foo.com/
CamelCaseLink
CamelCaseLink
------------------------------
============================== Placeholder (SKIP)
<<>>
------------------------------
============================== Bold and/or italic links
//[[Important page|this link is italicized]]//
**[[Important page]]**
//**[[Important page]]**//
------------------------------
this link is italicized
Important page
Important page
------------------------------
============================== Bold, Italics, Links, Pre in Lists (SKIP)
* **bold** item
* //italic// item
# item about a [[certain page]]
# {{{ //this// is **not** [[processed]] }}}
------------------------------
- item about a certain page
//this// is **not** [[processed]]
------------------------------