Nowiki text

Nowiki text is a section of raw or preformatted text that is not parsed as wiki syntax. Anything you place inside nowiki brackets will be displayed in monospace font exactly as you typed it.

Multi-line blocks

Use this code in a page:

{{{This is a code block
made of one
or more lines.
}}}

To create this:

This is a code block made of one or more lines.

Inline nowiki blocks

A normal sentence can contain an inline nowiki block, like {{{this block}}}.

Example (with the mathematical equation inside a nowiki block):

The equation E = mc^2 indicates that energy always exhibits mass in whatever form the energy takes.

Nowiki block properly indented beneath a list item

Use this code in a page:

* List item:{{{
This is a code block
made of one
or more lines.
}}}

To create this:

Nowiki block with custom CSS style

The example uses lightcyan and purple colors, but you can replace those with whatever colors you like, using color names or hexadecimal notation.

Use this code in a page:

<span style="background-color:lightcyan; color:purple;">{{{This is a code block
made of one
or more lines.
}}}</span>

To create this:

This is a code block made of one or more lines.