You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i use the options of tables like this:
options.tables = Options.Tables.MULTI_MARKDOWN;
the program converts the HTML code block to the markdown code, like this
| ---- | ---- |
| 1 | 1 |
so , the html code of table can be draw, but the markdown code still code, can not be draw by the markdown engine.
i think it should add empty header to support markdown engine to draw the table, like this :
| | |
| ---- | ---- |
| 1 | 1 |
The text was updated successfully, but these errors were encountered:
html code block of table :
i use the options of tables like this:
options.tables = Options.Tables.MULTI_MARKDOWN;
the program converts the HTML code block to the markdown code, like this
| ---- | ---- |
| 1 | 1 |
so , the html code of table can be draw, but the markdown code still code, can not be draw by the markdown engine.
i think it should add empty header to support markdown engine to draw the table, like this :
The text was updated successfully, but these errors were encountered: