Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

line before a table is interpreted as fist col #415

Closed
Haikuch opened this issue Aug 6, 2016 · 1 comment · Fixed by #584
Closed

line before a table is interpreted as fist col #415

Haikuch opened this issue Aug 6, 2016 · 1 comment · Fixed by #584
Labels
Milestone

Comments

@Haikuch
Copy link

Haikuch commented Aug 6, 2016

see markdown:

Thats a nice table
| Col1 | Col2 | Col3 |
| ----- | ----- | ----- |
| text1 | text2 | text3 |

is interpreted as html:

<table>
<thead>
<tr>
<th>Thats a nice table</th>
<th>Col1</th>
<th>Col2</th>
<th>Col3</th>
</tr>
</thead>
<tbody>
<tr>
<td>text1</td>
<td>text2</td>
<td>text3</td>
</tr>
</tbody>
</table>
@kminchev
Copy link

kminchev commented Aug 8, 2016

So add an extra line break.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
4 participants