bhollis / maruku

A pure-Ruby Markdown-superset interpreter (Official Repo).
MIT License
500 stars 80 forks source link

Tables with empty cells #11

Closed vibrog closed 11 years ago

vibrog commented 14 years ago

Maruku will not handle a table with an empty entry, like this:

| First Header  | Second Header |
| ------------- | ------------- |
|               | Content Cell  |
| Content Cell  | Content Cell  |

Is Markdown-Extra supposed to support such tables without a non-breaking space or real content in a cell?

bhollis commented 11 years ago

I've confirmed that this works fine in 0.6.1 and master. 0.6.1 exports a self-closing <td>, but that's valid under XHTML.