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
# Table test| column 1 | column 2 || --- | --- || this is a very long row | longer than width limit |
Rendering with a width less than that of one of the rows of the table gives:
$ cmark-gfm --extension table --width 40 --to commonmark table.md
# Table test| column 1 | column 2 || --- | --- || this is a very long row | longer thanwidth limit |
Which is not compatible with the original content since it will render an extra row:
$ cmark-gfm --extension table --width 40 --to commonmark table.md | cmark-gfm --to html --extension table<h1>Table test</h1><table><thead><tr><th>column 1</th><th>column 2</th></tr></thead><tbody><tr><td>this is a very long row</td><td>longer than</td></tr><tr><td>width limit</td><td></td></tr></tbody></table>
From what I can tell reading the spec https://github.github.com/gfm/#tables-extension- there's no support for breaking table rows over several lines, so I suppose the commonmark render should never try to break these lines, regardless of width?
The text was updated successfully, but these errors were encountered:
Given the content:
Rendering with a width less than that of one of the rows of the table gives:
Which is not compatible with the original content since it will render an extra row:
From what I can tell reading the spec https://github.github.com/gfm/#tables-extension- there's no support for breaking table rows over several lines, so I suppose the commonmark render should never try to break these lines, regardless of width?
The text was updated successfully, but these errors were encountered: