pegdown
pegdown copied to clipboard
Does not parse tables if table cells have table divider characters in the cells
| 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.