The leopards have names. Here is a handy table to help you identify them:
Name | colour
-----------|------------
fluffy | leopard coloured
tiddles | leopard coloured
Socks | leopard coloured
Output is:
<p>The leopards have names. Here is a handy table to help you identify them:
Name | colour
-----------|------------
fluffy | leopard coloured
tiddles | leopard coloured
Socks | leopard coloured</p>
Putting an extra CR in front of the table Markdown fixes this:
The leopards have names. Here is a handy table to help you identify them:
Name | colour
-----------|------------
fluffy | leopard coloured
tiddles | leopard coloured
Socks | leopard coloured
parses to:
<p>The leopards have names. Here is a handy table to help you identify them:</p>
<table><thead><tr><th>Name</th><th>colour</th></tr></thead><tbody><tr><td>fluffy</td><td>leopard coloured</td></tr><tr><td>tiddles</td><td>leopard coloured</td></tr><tr><td>Socks</td><td>leopard coloured</td></tr></tbody></table>
Here's the same text in Github:
The leopards have names. Here is a handy table to help you identify them:
Name
I'm running against :HEAD to get the github markdown. Calling
For input:
Output is:
instead of
Putting an extra CR in front of the table Markdown fixes this:
parses to:
Here's the same text in Github: