Size: 4004
Comment:
|
Size: 3411
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 10: | Line 10: |
== General == * Use one or more blank lines to separate paragraphs. * Use `[[BR]]` to insert linebreaks into paragraphs. |
|
Line 26: | Line 31: |
== Text Formatting Rules == | == Colorized Code == |
Line 28: | Line 33: |
Leave blank lines between paragraphs. Use {{{[[BR]]}}} to insert linebreaks into paragraphs. | There are several ways to display colorized code formatting: 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 `inline:` 3. Begin a page with the format processing instruction: `#format parsername` |
Line 30: | Line 38: |
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. __Underlined text__ needs a double underscore on each side. You get ^superscripted text^ by enclosing it into caret characters, and ,,subscripts,, have to be embedded into double commas. If you need something ~-smaller-~ or ~+larger+~ you can get that by writing {{{~-smaller-~}}} or {{{~+larger+~}}}. |
[#color_code_example Example.] |
Line 38: | Line 40: |
To insert program source in a {{{monospace font}}} without reformatting, use three curly braces: {{{ |
To see the list of supported languages see HelpOnParsers. ---- = Examples = == Mixing ''italic'' and '''bold''' == [[Anchor(italic_bold_example)]] ## Note that in some places we've used backticks here to "escape" the Wiki markup. ||'''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''''' || == Code == [[Anchor(code_example)]] ## Note that we've used backticks here to "escape" the Wiki markup, and line-breaks to split up the paragraph. `{{{` [[BR]] `10 PRINT "Hello, world!"` [[BR]] `20 GOTO 10` [[BR]] `}}}` [[BR]] Result: {{{ |
Line 44: | Line 75: |
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). | |
Line 46: | Line 76: |
For more information on the possible markup, see HelpOnEditing. | == Superscript & Subscript == |
Line 48: | Line 78: |
=== Example === {{{ __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, unless your head is filled with H,,2,,O.` Result: |
Line 58: | Line 84: |
An { { {inline code sequence} } } has the start and end markers on the same line. Or you use `backticks`. | |
Line 60: | Line 85: |
A code display has them on different lines: { { { '''No''' markup here! } } } }}} /!\ In the above example, we "escaped" the markers for source code sequences by inserting spaces between the curly braces. |
== Colorized Code, Method #1 == [[Anchor(color_code_example)]] |
Line 66: | Line 88: |
=== Display === __Mixing__ ''italics'' and '''bold''': * '''''Mix''' at the beginning'' * '''''Mix'' at the beginning''' * '''Mix at the ''end''''' * ''Mix at the '''end''''' |
## Note that we've used backticks here to "escape" the Wiki markup, and line-breaks to split up the paragraph. |
Line 73: | Line 90: |
You might recall ''a''^2^ `+` ''b''^2^ `=` ''c''^2^ from your math lessons, unless your head is filled with H,,2,,O. | `{{{#!python` [[BR]] `from colors import palette` [[BR]] `palette.colorize('python')` [[BR]] `}}}` [[BR]] |
Line 75: | Line 95: |
An {{{inline code sequence}}} has the start and end markers on the same line. Or you use `backticks`. | Result: |
Line 77: | Line 97: |
A code display has them on different lines: {{{ '''No''' markup here! }}} === Colorized code displays === There are several ways to get colorized formatting of code[[FootNote(There is currently only support for limited number of languages, see HelpOnParsers.)]]: 1. start a code display with a line only containing "#!PARSERNAME" 1. embed a file attachment bearing a ".py" extension via "inline:" 1. start a page with a format processing instruction ("#format PARSERNAME") Example: {{{#!python |
{{{#!python |
General
- Use one or more blank lines to separate paragraphs.
Use [[BR]] 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}}} |
[#code_example Example.] Wiki markup is ignored. |
underline |
__underline__ |
|
superscript |
^superscript^ |
|
subscript |
,,subscript,, |
|
smaller |
~-smaller-~ |
|
larger |
~+larger+~ |
|
Colorized Code
There are several ways to display colorized code formatting:
Start a special code block containing the parser's name: {{{#!parsername
Embed a file attachment bearing a supported extension (such as ".py") with inline:
Begin a page with the format processing instruction: #format parsername
[#color_code_example Example.]
To see the list of supported languages see HelpOnParsers.
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 |
Code
{{{ BR 10 PRINT "Hello, world!" BR 20 GOTO 10 BR }}} BR
Result:
10 PRINT "Hello, world!" 20 GOTO 10
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.
Colorized Code, Method #1
{{{#!python BR from colors import palette BR palette.colorize('python') BR }}} BR
Result: