## Please edit system and help pages ONLY in the moinmaster wiki! For more ## information, please see MoinMaster:MoinPagesEditorGroup. ##master-page:Unknown-Page ##master-date:Unknown-Date #acl MoinPagesEditorGroup:read,write,delete,revert All:read #format text/creole #language en This page aims to introduce the most important elements of creole syntax at a glance, showing first the markup verbatim and then how it is rendered by the wiki engine. Additionally, you'll find links to the relative help pages. Please note that some of the features depend on your configuration. = Table of Contents = {{{ **Contents** (up to the 2nd level) <> }}} **Contents** (up to the 2nd level) <> = Headings = {{{ = heading 1st level = == heading 2nd level == === heading 3rd level === ==== heading 4th level ==== ===== heading 5th level ===== }}} = heading 1st level = == heading 2nd level == === heading 3rd level === ==== heading 4th level ==== ===== heading 5th level ===== = Text Formatting = {{{ * //emphasized (italics)// * **boldface** * **//bold italics//**, //**italics bold**// * {{{monospace}}} }}} * //emphasized (italics)// * **boldface** * **//bold italics//**, //**italics bold**// * {{{monospace}}} = Hyperlinks = == Internal Links == {{{ * [[FrontPage]] * [[HelpOnEditing/SubPages]] * [[/SubPage]] * [[../SiblingPage]] * [[FrontPage|named link]] * [[#anchorname]] * [[#anchorname|description]] * [[PageName#anchorname]] * [[PageName#anchorname|description]] * [[attachment:filename.txt]] }}} * [[FrontPage]] * [[HelpOnEditing/SubPages]] * [[/SubPage]] * [[../SiblingPage]] * [[FrontPage|named link]] * [[#anchorname]] * [[#anchorname|description]] * [[PageName#anchorname]] * [[PageName#anchorname|description]] * [[attachment:filename.txt]] == External Links == {{{ * http://moinmo.in/ * [[http://moinmo.in/]] * [[http://moinmo.in/|MoinMoin Wiki]] * [[http://static.moinmo.in/logos/moinmoin.png]] * {{http://static.moinmo.in/logos/moinmoin.png}} * [[http://static.moinmo.in/logos/moinmoin.png|moinmoin.png]] * [[MeatBall:InterWiki|InterWiki page on MeatBall]] * [[file://///servername/share/full/path/to/file/filename%20with%20spaces.txt|link to file filename with spaces.txt]] * [[mailto:user@example.com]] }}} * http://moinmo.in/ * [[http://moinmo.in/]] * [[http://moinmo.in/|MoinMoin Wiki]] * [[http://static.moinmo.in/logos/moinmoin.png]] * {{http://static.moinmo.in/logos/moinmoin.png}} * [[http://static.moinmo.in/logos/moinmoin.png|moinmoin.png]] * [[MeatBall:InterWiki|InterWiki page on MeatBall]] * [[file://///servername/share/full/path/to/file/filename%20with%20spaces.txt|link to file filename with spaces.txt]] * [[mailto:user@example.com]] == Avoid or Limit Automatic Linking == {{{ * {{{http://www.example.com}}} * ~http://www.example.com/ }}} * {{{http://www.example.com}}} * ~http://www.example.com/ = Drawings = {{drawing:myexample}} = Lists = == Unordered Lists == {{{ * item 1 * item 2 (preceding white space) ** item 2.1 *** item 2.1.1 * item 3 }}} * item 1 * item 2 (preceding white space) ** item 2.1 *** item 2.1.1 * item 3 == Ordered Lists == {{{ # item 1 ## item 1.1 ## item 1.2 # item 2 }}} # item 1 ## item 1.1 ## item 1.2 # item 2 = Horizontal Rule = {{{ ---- }}} ---- = Tables = {{{ |=A |=B |=C | | 1 | 2 | 3 | }}} |=A |=B |=C | | 1 | 2 | 3 | = Other = {{{ forced\\linebreak }}} forced\\linebreak = Macros and Variables = == Macros == * {{{<>}}} inserts a link anchor {{{anchorname}}} * {{{<
>}}} inserts a hard line break * {{{<>}}} inserts a footnote saying {{{Note}}} * {{{<>}}} inserts the contents of the page {{{HelpOnMacros/Include}}} inline * {{{<>}}} obfuscates the email address {{{user@example.com}}} to users not logged in = Parsers = == Verbatim Display == {{{ {{{ def hello(): print "Hello World!" ~}}} }}} {{{ def hello(): print "Hello World!" }}} == Syntax Highlighting == {{{ {{{ #!python def hello(): print "Hello World!" ~}}} }}} {{{ #!python def hello(): print "Hello World!" }}}