The following 136 words could not be found in the dictionary of 1150 words (including 1150 LocalSpellingWords) and are highlighted below:
additional   Anchor   attachment   backticks   based   bearing   Begin   beginning   blank   block   braces   but   called   can   codeexample   colorize   Colorized   Colorizing   colors   comes   computers   configuration   containing   curly   default   describes   Double   Embed   enabled   Example   example   Examples   extension   ffffcc   files   filled   For   for   format   from   General   head   Highlighting   ignored   import   insert   inside   instruction   Instructions   internally   into   larger   lessons   levels   linebreaks   lines   look   macro   Macros   macros   many   math   might   Mix   Mixing   monospace   more   multiple   name   nest   Nesting   Notes   on   On   one   only   or   out   palette   paragraphs   parser   parsername   Parsers   parsers   pointed   processing   Processing   programming   Pygments   pygments   quotes   recall   Result   rowbgcolor   Sample   script   see   separate   several   single   Single   smaller   sorts   source   special   Start   stroke   sub   Subscript   such   super   Superscript   supported   syntax   syntaxes   tables   Tables   take   test   text   that   There   This   to   Triple   Typeface   underline   unless   use   used   using   ways   which   with   without   world  

Clear message
Locked History Actions Discussion

HelpOnFormatting

HelpForUsers > HelpOnEditing > HelpOnFormatting

This page describes using the MoinMoin wiki syntax (which is the default syntax for a MoinMoin based wiki, but not the only one). For other parsers/syntaxes take a look at HelpOnParsers.

General

  • Use one or more blank lines to separate paragraphs.
  • Use <<BR>> macro to insert linebreaks into paragraphs.

Typeface

Name/Sample

Markup

Notes

italic

''italic''

Double single quotes.

bold

'''bold'''

Triple single quotes.

monospace

`monospace`

Single backticks. Wiki markup is ignored.

code

{{{code}}}

Example. Wiki markup is ignored.

underline

__underline__

superscript

^super^script

subscript

,,sub,,script

smaller

~-smaller-~

larger

~+larger+~

stroke

--(stroke)--

Colorize text

Colorizing is enabled in tables without additional macros (see HelpOnTables).

Colorize code (Syntax Highlighting)

There are several ways to highlight code:

  1. Start a special code block containing the parser's name: {{{#!parsername

  2. Embed a file attachment bearing a supported extension (such as ".py") with {{attachment:test.py}}

  3. Begin a page with the format processing instruction: #format parsername

Example.

MoinMoin comes with a special parser called highlight that is based on Pygments internally.

You can use it to highlight many sorts of programming source code, configuration files and other sorts of text files used on computers.


Examples

Mixing ''italic'' and '''bold'''

Markup

Result

'''''Mix''' at the beginning''

Mix at the beginning

'''''Mix'' at the beginning'''

Mix at the beginning

'''Mix at the ''end'''''

Mix at the end

''Mix at the '''end'''''

Mix at the end

Superscript & Subscript

You might recall ''a''^2^ `+` ''b''^2^ `=` ''c''^2^ from your math lessons, unless your head is filled with H,,2,,O.

Result:

You might recall a2 + b2 = c2 from your math lessons, unless your head is filled with H2O.

Code

Markup:

{{{
10 PRINT "Hello, world!"
20 GOTO 10
}}}

Result:

10 PRINT "Hello, world!"
20 GOTO 10

Nesting curly braces

As pointed out on HelpOnParsers, you can nest multiple levels of curly braces:

Markup:

{{{{ 
This is a preformatted text block.
{{{ with curly braces inside }}}
}}}}

Result:

This is a preformatted text block.
{{{ with curly braces inside }}}

Colorized Code

Markup:

{{{#!highlight python
from colors import palette
palette.colorize('python')
}}}

Result:

   1 from colors import palette
   2 palette.colorize('python')