MyApp - Help

Creole Markup

Some Fields 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]] Python

Additional syntax

Image {{/media/theme/logo.png|logo}} 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:

Numbered List

# Entry One
# Entry Two
## Subentry Two.One

results in:

  1. Entry One
  2. Entry Two
    1. 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>
}}}

results in:

unprocessde data! <div>

Piki Markup

[[rel_path_to_page|Name]] will result in a Link to the given wiki page.
<<subpages>> will result in a list of all subpages below the current page.
<<subpages=N,startswith>> will result in a list of subpages below the current page. N will reduce the depth of the subpages to N. startswith will reduce the hits to all pages starting with the given string. You can give one or both Parameters.
<<allpages>> will result in a last of all pages. You can use [N,startswith] as with subpages.