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
Currently, this HTML:
<table> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>Cell 1</td> </tr> </table>
Throws an error:
The output markdown should be in HTML-syntax, the same as the above HTML.
Note: It should NOT be in markdown with missing cells like: | Header 1 | Header 2 | | -------- | -------- | | Cell 1 | As the above markdown renders as: Header 1 Header 2 Cell 1 When it's suppose to be: Header 1 Header 2 Cell 1
Note: It should NOT be in markdown with missing cells like:
| Header 1 | Header 2 | | -------- | -------- | | Cell 1 |
As the above markdown renders as:
When it's suppose to be:
<table> <tr> <th>Header 1</th> </tr> <tr> <td>Cell 1</td> <td>Cell 2</td> </tr> </table>
converts to this markdown:
| Header 1 | |----------| | Cell 1 | Cell 2 |
which incorrectly renders in GitHub as:
Note: It should NOT be in markdown with empty headers: | Header 1 | | | -------- | ------ | | Cell 1 | Cell 2 | As the above markdown renders as: Header 1 Cell 1 Cell 2 When it's suppose to be: Header 1 Cell 1 Cell 2
Note: It should NOT be in markdown with empty headers:
| Header 1 | | | -------- | ------ | | Cell 1 | Cell 2 |
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem 1
Currently, this HTML:
Throws an error:
The output markdown should be in HTML-syntax, the same as the above HTML.
Problem 2
Currently, this HTML:
converts to this markdown:
which incorrectly renders in GitHub as:
The output markdown should be in HTML-syntax, the same as the above HTML.
The text was updated successfully, but these errors were encountered: