Closed mamantoha closed 3 years ago
Render next markdown
| Foo | Bar | | :---: | :---: |
returns
<table> <thead> <tr> <th align="center">Foo</th> <th align="center">Bar</th> </tr> </thead>
after this fix will return proper HTML:
<table> <thead> <tr> <th align="center">Foo</th> <th align="center">Bar</th> </tr> </thead> </table>
Also tested on tables with many rows.
See for reference: https://github.com/github/cmark-gfm/blob/master/extensions/table.c#L664-L672
Thanks @mamantoha!
Render next markdown
returns
after this fix will return proper HTML:
Also tested on tables with many rows.
See for reference: https://github.com/github/cmark-gfm/blob/master/extensions/table.c#L664-L672