HelpContents > HelpForUsers > HelpOnEditing > HelpOnParsers
Parsers
Besides the default MoinMoin wiki markup, different parsers allow the user to enter content into a page or a page section which is interpreted differently. A MoinMoin wiki mostly will use the default wiki parser, which is described on HelpOnFormatting.
Indice
How formats are applied
Parsers go through the contents of a page to create a sequence of formatter calls which in sequence create some readable output. MoinMoin will choose the parser for a page using 2 different techniques:
A #FORMAT processing instruction can be used to tell MoinMoin which parser to use for the whole page content. By default this is the wiki parser. Example:
#FORMAT cplusplus ... some C++ source ...
Code Display Regions - see HelpOnFormatting
With the use of code display regions, a parser can be applied to only a part of a page (this was a processor region in earlier versions of MoinMoin). You specify which parser to call by using a bang path-like construct in the first line. A bang path is a concept known from Unix command line scripts, where they serve the exact same purpose: the first line tells the shell what program to start to process the remaining lines of the script. For example, the code
{{{#!CSV , a,b,c d,e,f }}}
produces the table:
Note that there are 2 ways to solve nesting problems related to }}}:
- Use more than 3 curly braces for beginning / ending of the parser section (what you use must not be contained in the section you are enclosing). E.g.:
{{{{ {{{ ... }}} }}}}
- Use 3 curly braces + some unique string:
{{{asdfghj {{{ ... }}} asdfghj}}}
For more information on the possible markup, see HelpOnEditing.
ParserBase
ParserBase is a parser utility class used to produce colorized source displays. It is easily extended. The HTML Formatter will render such code displays with switchable linenumbers, if the browser supports DOM and JavaScript.
A ParserBase colorization parser understands the following arguments to a #FORMAT pi or a hashbang line. Just add those arguments after the name of the parser (#FORMAT python start=10 step=10 numbers=on or #!python numbers=off).
- numbers
- if line numbers should be added. defaults to 'on'. possible values: 'on', 'off' (no line numbers, but javascript to add them), 'disable' (no line numbers at all)
- start
- where to start with numbering. defaults to 1
- step
- increment to the linenumber. defaults to 1
MoinMoin comes with a few examples from which you can go on:
creole
See HelpOnCreoleSyntax.
python
Colorizes python code. It is not derived from ParserBase, but it allows the same arguments as the ParserBase parsers.
def hello():
print "Hello World!"
def hello():
print "Hello World!"
cplusplus
java
1 import java.util.Date;
2 import java.util.Calendar;
3
4 public class IntDate
5 {
6 public static Date getDate(String year, String month, String day)
7 {
8 // Date(int, int, int) has been deprecated, so use Calendar to
9 // set the year, month, and day.
10 Calendar c = Calendar.getInstance();
11 // Convert each argument to int.
12 c.set(Integer.parseInt(year),Integer.parseInt(month),Integer.parseInt(day));
13 return c.getTime();
14 }
15 }
pascal
IRC
Puts an IRC log into a table.
1 (23:18) < jroes> ah
2 (23:21) -!- gpciceri [~gpciceri@host181-130.pool8248.interbusiness.it] has quit [Read error: 110 (Connection timed out)]
3 (23:36) < ThomasWal> you could also write a parser or processor
4 (23:38) < jroes> i could?
5 (23:38) < jroes> would that require modification on the moin end though?
6 (23:38) < jroes> i cant change the wiki myself :x
The format parsed is the log format of IRSSI, a popular console IRC client, but it should also match the log format of quite some other IRC clients.
CSV
The CSV parser works on so-called comma separated values, though the comma is now usually and by default a semicolon. The first line is considered to contain column titles that are rendered in bold, so when you don't want table headers, leave the first line empty.
The bang path can contain "-index" arguments, each of which hides a certain column from the output; column indices are counted starting from 1.
Any non-whitespace argument that doesn't start with a - specifies the separator. This allows you to use e.g. commas (,) instead of semicolons (;). If you do not supply a separator, ; will be used.
The currently included CSV parser code is very simple.
Example tables (please see the raw text of this page for the markup used):
MoinMoin 1.3 - clipping of the patch history:
MoinMoin Version History:
reStructuredText
XML/XSLT/DocBook
See HelpOnXmlPages.
Additional Parsers
For many more parsers and installation instructions, see ParserMarket