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
Using Markdown Extra. Example:
Test long field | Something --------------: | ---------- 1 | Test 2 | Test 3 | Test
Resulting HTML:
<table> <thead> <tr><th align="right">Test long field</th><th>Something</th></tr> </thead> <tbody> </tbody> </table> <pre><code> 1 | Test 2 | Test 3 | Test </code></pre>
The space indentation in the table cell is being interpreted as a code block. I'm pretty sure this was working correctly with an earlier version.
The text was updated successfully, but these errors were encountered:
Github also does render it like this:
1 | Test 2 | Test 3 | Test
Sorry, something went wrong.
It could probably be changed to render as a table.
In the meantime you can use it like this:
| Test long field | Something | --------------: | ---------- | 1 | Test | 2 | Test | 3 | Test
No branches or pull requests
Using Markdown Extra. Example:
Resulting HTML:
The space indentation in the table cell is being interpreted as a code block. I'm pretty sure this was working correctly with an earlier version.
The text was updated successfully, but these errors were encountered: