| HelpOnFormatting |
UserPreferences |
| The VSTa Wiki | FrontPage | RecentChanges | TitleIndex | WordIndex | SiteNavigation | HelpContents |
Leave blank lines between paragraphs. Use [[BR]] to insert linebreaks into paragraphs.
You can render text in italics or bold. To write italics, enclose the text in double single quotes. To write bold, enclose the text in triple single quotes. You get superscripted text by enclosing it into caret characters.
To insert program source without reformatting in a monospace font, use three curly braces:
10 PRINT "Hello, world!" 20 GOTO 10
Note that within code sections, both inline and display ones, any wiki markup is ignored. An alternative and shorter syntax for inlined code is to use backtick characters (note that this can be disabled by the site's configuration, but is enabled by default).
For more information on the possible markup, see HelpOnEditing.
Mixing ''italics'' and '''bold''':
* '''''Mix''' at the beginning''
* '''''Mix'' at the beginning'''
* '''Mix at the ''end'''''
* ''Mix at the '''end'''''
You might recall ''a''^2^ `+` ''b''^2^ `=` ''c''^2^ from your math lessons.
An { { {inline code sequence} } } has the start and end markers on the same line. Or you use `backticks`.
A code display has them on different lines: { { {
'''No''' markup here!
} } }
You might recall a2 + b2 = c2 from your math lessons.
An inline code sequence has the start and end markers on the same line. Or you use backticks.
A code display has them on different lines:
'''No''' markup here!
Example:
>
| | Python 2.6.5 /usr/bin/python |
A problem occurred while running a Python script. Here is the sequence of function calls leading up to the error, with the most recent (innermost) call first. The exception attributes are:
| /home/wiki/moin/MoinMoin/parser/wiki.py in format(self=<MoinMoin.parser.wiki.Parser instance>, formatter=<MoinMoin.formatter.text_html.Formatter instance>, form=FieldStorage(None, None, [])) |
| 810 from MoinMoin.processor.Colorize import process |
| /home/wiki/moin/MoinMoin/Page.py in send_page(self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.Request instance>, msg='', **keywords={'count_hit': 1}) |
| 384 Parser(body, request).format(self.formatter, form) |
| /home/wiki/moin/MoinMoin/cgimain.py in run(properties={'standalone': 1}) |
| 203 Page(query).send_page(request, count_hit=1) |