123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- MYCREOLE_HELP = """\
- = Creole Markup
-
- The Fields //"Description"// and //"Name"// of Tasks and Projects are interpreted as creole. \
- See http://www.wikicreole.org for more details.
-
- == Text Markup
- | =Name | =Syntax | =Result |
- | Normal | {{{text}}} | text |
- | Bold | {{{**text**}}} | **text** |
- | Italics | {{{//text//}}} | //text// |
- | Underline | {{{__text__}}} | __text__ |
- | Raw Link | {{{https://python.org}}} | https://python.org |
- | Text Link | {{{[[https://python.org|Python]]}}} | [[https://python.org|Python]] |
- | Image | {{{ {{/media/theme/logo.png|logo}} }}} | {{/media/theme/logo.png|logo}} |
- | Attachment Text Link | {{{[[attachment:file.ext|Python]]}}} | |
- | Attachment Image | {{{ {{attachment:logo.png|logo}} }}} | |
-
- == Paragraph Markup
- === Bullet List
- {{{
- * Entry One
- * Entry Two
- ** Subentry Two.One
- }}}
- results in:
- * Entry One
- * Entry Two
- ** Subentry Two.One
-
- === Numbered List
- {{{
- # Entry One
- # Entry Two
- ## Subentry Two.One
- }}}
- results in:
- # Entry One
- # Entry Two
- ## Subentry Two.One
-
- === Headings
- {{{ = Large Heading }}}
- results in:
- = Large Heading
-
- {{{ == Medium Heading }}}
- results in:
- == Medium Heading
-
- {{{ === Small Heading }}}
- results in:
- === Small Heading
-
- === Line Break
- {{{
- Multiple
- line text
- }}}
- results in:
-
- Multiple
- line text
-
- === No Line Break
- {{{
- Single \\
- Line
- }}}
- results in:
-
- Single \
- Line
-
- === Paragraph
- {{{
- Part 1
-
- Part 2
- }}}
- results in:
-
- Part 1
-
- Part 2
-
- === Horizontal Line
- {{{
- ----
- }}}
- results in:
- ----
-
- === Table
- {{{
- | =Header 1 | =Header 2 | =Header 3 |
- | body row 1 | column 2 | column 3 |
- | body row 2 | - | - |
-
- }}}
- results in:
-
- | =Header 1 | =Header 2 | =Header 3 |
- | body row 1 | column 2 | column 3 |
- | body row 2 | - | - |
-
- === Unprocessed (raw) Text
- {{{
- {{{
- unprocessde data! <div>
- }}\0}
- }}}
- results in:
-
- {{{
- unprocessde data! <div>
- }}}
- """
|