sirthias / pegdown

A pure-Java Markdown processor based on a parboiled PEG parser supporting a number of extensions
http://pegdown.org
Apache License 2.0
1.29k stars 218 forks source link

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

Open vsch opened 8 years ago

vsch commented 8 years ago
| 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.