The text is formatted depending on what type of element it is contained.
<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.
<p>
The quick brown fox</br>jumped over the lazy dog.
</p>
The code above is shown below.
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-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.
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.