We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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>
The text was updated successfully, but these errors were encountered:
So add an extra line break.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
see markdown:
is interpreted as html:
The text was updated successfully, but these errors were encountered: