Glasnost

help

 

SPIP Syntax: Literal Blocks

Literal blocks are enclosed between <code> and </code>.

Example

<code>
A literal
  block of
    text.
<\/code>

Note the additional \ in </code> which must be escaped, as this example bloc is itself surrounded by <code> and </code>. The result of this example without the \ is:

A literal
  block of
    text.
up