<div class="markdown">
<p dir="auto">On 4 Jun 2015, at 13:43, Volker Kopetzky wrote:</p>

<blockquote>
<h4>1 - How to add a line break to lists</h4>

<pre><code>* some list text
a second line in the same list item
</code></pre>

<p dir="auto"><code><br /></code> and <code>\&#10;</code> do not add a new line.</p>
</blockquote>

<p dir="auto">Double space at the end of a line gives you a line break.</p>

<pre><code>* Double space at the end of this list item  
a second line on the same list item
* A new line
</code></pre>

<p dir="auto">displays as</p>

<ul>
<li>Double space at the end of this list item<br>
a second line on the same list item</li>
<li>A new line</li>
</ul>

<p dir="auto">I don’t think you can get a blank line in the middle of a list item that spans across several lines.</p>

<blockquote>
<h4>3 - tables</h4>

<p dir="auto">This is least important for myself, still I am curious on how to create one.</p>

<p dir="auto">This does not work:<br>
| cell1 | cell2 | cell3 |<br>
| cell4 | cell5 | cell6 |<br>
| cell7 | cell8 | cell9 |</p>
</blockquote>

<p dir="auto">You need to separate a header row. See the <a href="https://rawgit.com/fletcher/human-markdown-reference/master/index.html">Cheatsheet</a> (Tables-section)</p>

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

<p dir="auto">gives</p>

<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>

<p dir="auto">Regards<br>
– Erik</p>

</div>