Block format

Paragraph
Code:
<p>Text in the first paragraph.</p><p>Text in the second paragraph.</p>
Result:

Text in the first paragraph.

Text in the second paragraph.

Line
Code:
<hr />
Result:

Bulleted list
Code:
<ul>
<li>First list item</li>
<li>Second list item</li>
<li>...</li>
<ul>
Result:
Numbered list
Code:
<ol>
<li>First list item</li>
<li>Second list item</li>
<li>...</li>
<ol>
Result:
  1. First list item
  2. Second list item
  3. ...
Definition list
Code:
<dl>
<dt>First word to define</dt>
<dd>Definition of the first word</dd>
<dt>Second word to define</dt>
<dd>Definition of the second word</dd>
</dl>
Result:
First word to define
Definition of the first word
Second word to define
Definition of the second word
Tables
Code:
 
<table>
<caption>A caption for the table</caption>
<tr>
<th>First column header</th>
<th>Second column header</th>
</tr>
<tr>
<td>Line 1, column 1</td>
<td>Line 1, column 2</td>
</tr>
<tr>
<td>Line 2, column 1</td>
<td>Line 2, column 2</td>
</tr>
</table>
Result:
A caption for the table
First column header Second column header
Line 1, column 1 Line 1, column 2
Line 2, column 1 Line 2, column 2
Subtitle level x
Code:
<hx>Level x title</hx> (where x is a number between 3 and 6)
Example:
<h5>Level 5 title</h5>
Level 5 title
Preformatted text
Code:
<pre>
This code will be displayed
as it is with the line breaks
and the tabulations.
</pre>
Result:
This code will be displayed
as it is with the line breaks
and the tabulations.
Quote (blockquote)
Code:
<blockquote>
<p>This is a text which is quoted</p>
</blockquote>
Result:

This is a text which is quoted

Inline format

Big emphasis (bold)
Code:
This is a <strong>bold text</strong>
Result:
This is a bold text
Simple emphasis (italic)
Code:
This is an <em>italic text</em>
Result:
This is an italic text
Forced line break
Code:
This is the first line <br />and this is the second line.
Result:
This is the first line
and this is the second line.
Link
Code:
This is a link to the <a href="http://pxsystem.sourceforge.net/"
title="Go to the Plume CMS site" hreflang="en">Plume CMS site</a>.
Result:
This is a link to the Plume CMS site.
Note : The title attribute contains the text of the tooltip when the mouse is hovering the link.
Image
Code:
<img src="http://pxsystem.sourceforge.net/media/img/logo.png"
alt="Logo of plume CMS" style="width: 100px; height: 45px;" />
Result:
Logo of plume CMS
Note : The alt attribute is the alternative text when the picture couldn't be displayed.
Code
Code:
<code>var formatField = null;</code> : that's JavaScript.
Result:
var formatField = null; : that's JavaScript.
Citation
Code:
<q>To be or not to be...</q>
Result:
To be or not to be...
Acronym
Code:
<acronym title="HyperText Markup Language">HTML</acronym>
Result:
HTML