<li>There must be at least one <code>|</code> per line</li>
<li>The “separator” line between headers and table content must contain only <code>|</code>,<code>-</code>, <code>=</code>, <code>:</code>,<code>.</code>, <code>+</code>, or spaces</li>
<li>Cell content must be on one line only</li>
<li>Columns are separated by <code>|</code></li>
<li>The first line of the table, and the alignment/divider line, must start at
the beginning of the line</li>
</ul>
<p>Other notes:</p>
<ul>
<li>It is optional whether you have <code>|</code> characters at the beginning and end of lines.</li>
<li>The “separator” line uses <code>----</code> or <code>====</code> to indicate the line between a header and cell. The length of the line doesn’t matter, but must have at least one character per cell.</li>
<li>To set alignment, you can use a colon to designate left or right alignment, or a colon at each end to designate center alignment, as above. If no colon is present, the default alignment of your system is selected (left in most cases). </li>
<li>To indicate that a cell should span multiple columns, then simply add additional pipes (<code>|</code>) at the end of the cell, as shown in the example. If the cell in question is at the end of the row, then of course that means that pipes are not optional at the end of that row…. The number of pipes equals the number of columns the cell should span.</li>
<li>You can use Markdown markup within the table cells.</li>
<li>Cells can be empty.</li>
</ul>
<h2 id="definitions">Definition Lists</h2>
Definition lists uses this syntax:
<pre><code>
Apple
: Pomaceous fruit of plants of the genus Malus in
the family Rosaceae.
: An american computer company.
Orange
: The fruit of an evergreen tree of the genus Citrus.
</code></pre>
<p>becomes:</p>
<div class="bz_comment_text">
<dl style="margin-left: 5em">
<dt>Apple</dt>
<dd>Pomaceous fruit of plants of the genus Malus in
the family Rosaceae.</dd>
<dd>An american computer company.</dd>
<dt>Orange</dt>
<dd>The fruit of an evergreen tree of the genus Citrus.</dd>
</dl>
</div>
<p>You can have more than one term per definition by placing each term on a
separate line. Each definition starts with a colon, and you can have more than
one definition per term. You may optionally have a blank line between the last
term and the first definition.</p>
<p>Definitions may contain other block level elements, such as lists,