pegdown icon indicating copy to clipboard operation
pegdown copied to clipboard

Does not parse tables if table cells have table divider characters in the cells

Open vsch opened this issue 9 years ago • 0 comments

| Header 1 | Header 2 | Header 3 |
| --------- | --------- | --------- |
| 123456789 | -         | 123456789 |

The above table does not render the line. I was able to get around it by escaping the character.

| Header 1 | Header 2 | Header 3 |
| --------- | --------- | --------- |
| 123456789 | \-         | 123456789 |

Escaping the character should not be required. It works just fine in other markdown editors.

vsch avatar Oct 27 '15 00:10 vsch