fletcher / MultiMarkdown-4

This project is now deprecated. Please use MultiMarkdown-6 instead!
https://github.com/fletcher/MultiMarkdown-5
Other
306 stars 59 forks source link

Empty double quotes inside a table cell breaks layout #114

Closed tkob closed 9 years ago

tkob commented 9 years ago
| col1 | col2 |
| ---- | ---- |
| ""   | ""   |

The source above produces the following HTML:

(snip)
<td style="text-align:left;">&quot;&#8220; | &#8221;&quot;</td>
(snip)

while two td elements are expected.

If I insert some characters inside the quotes at col1, the result is fine; two td elements.

| col1 | col2 |
| ---- | ---- |
| "a"   | ""   |
<td style="text-align:left;">&#8220;a&#8221;</td>
<td style="text-align:left;">&quot;&quot;</td>
fletcher commented 9 years ago

Fixed. Thanks!