remark-java icon indicating copy to clipboard operation
remark-java copied to clipboard

some questions about table

Open katanala opened this issue 6 years ago • 0 comments

html code block of table :

<table>
  <tbody>
  <tr><td>1</td><td>1</td></tr>
  </tbody>
</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 :

|  |  |
| ---- | ---- |
| 1 | 1 |

katanala avatar Jan 29 '19 06:01 katanala