<div class="markdown">
<p dir="auto">On 4 Jun 2015, at 8:48, Erik Wessel-Berg wrote:</p>

<blockquote>
<p dir="auto">| col1  | col2  | col3  |<br>
  |-------|-------|-------|<br>
  | cell1 | cell2 | cell3 |<br>
  | cell4 | cell5 | cell6 |<br>
  | cell7 | cell8 | cell9 |</p>
</blockquote>

<p dir="auto">Notice that you don't need to "type" the table completely, as this also works and is less typing:</p>

<pre><code>col1 | col2 | col3
---|---|---
cell1 | cell2 | cell3
cell4 | cell5 | cell6
cell7 | cell8 | cell9
</code></pre>

<table><thead>
<tr>
<th>col1</th>
<th>col2</th>
<th>col3</th>
</tr>
</thead><tbody>
<tr>
<td>cell1</td>
<td>cell2</td>
<td>cell3</td>
</tr>
<tr>
<td>cell4</td>
<td>cell5</td>
<td>cell6</td>
</tr>
<tr>
<td>cell7</td>
<td>cell8</td>
<td>cell9</td>
</tr>
</tbody></table>

</div>