Text Formatting

The text is formatted depending on what type of element it is contained.

Paragraph


<p>
    The quick brown fox jumped over the lazy dog.
</p>
<p>
    The quick brown fox jumped over the lazy dog.
</p>

The code above is shown below.


Line break


<p>
    The quick brown fox</br>jumped over the lazy dog.
</p>

The code above is shown below.


Whitespace

Multiple whitespace is reduced to a single whitespace.


<p>
    The quick brown fox                     jumped over the lazy dog.
</p>

The code above is shown below.


Pre-formatted

Pre-formatting allows you to keep the multiple whitespace. Also note that automatic line-wrapping is stopped.


<p>
    <pre>The quick brown fox                     jumped over the lazy dog.</pre>
</p>

The code above is shown below.


Code

Uses a mono spaced font.


<p>
    The quick brown fox<br/>jumped over the lazy dog.
</p>
<code>
    The quick brown fox<br/>jumped over the lazy dog.
</code>


The code above is shown below.