zopieux / py-gfm

Github-Flavored Markdown for Python-Markdown.
https://pypi.org/project/py-gfm/
BSD 3-Clause "New" or "Revised" License
71 stars 14 forks source link

problem with "one-column tables" #8

Closed brunobord closed 7 years ago

brunobord commented 7 years ago

Hello,

Here's the following markdown:

| Header         |
| -------------- |
| Column content |

It's rendered as follows on github:

Header
Column content

But when it's parsed and rendered using py-gfm, it's rendered like this:

| Header         |
| -------------- |
| Column content |

Could you please fix that in a next release?

brunobord commented 7 years ago

looks like it's a Python-Markdown issue... https://github.com/waylan/Python-Markdown/issues/539

brunobord commented 7 years ago

It's fixed here, so I'll wait for the next release. sorry for the noise.

https://github.com/waylan/Python-Markdown/pull/540

zopieux commented 7 years ago

No problem, thanks for reporting anyway.