kordamp / markdown-gradle-plugin

Markdown/HTML plugin for gradle
Apache License 2.0
71 stars 51 forks source link

unbalanced quotes in table leads to error #32

Open jakemonO opened 2 years ago

jakemonO commented 2 years ago

if there are unbalanced quotes (&ldquo) in a table followed by balanced quotes again in another row the markdown converter gets confused. There shouldn't be any logic in this regard. (IMHO)

ex: ` label author
This is text with "balanced" quotes Jake
This is text with "unabalanced quotes Steve
This is text with "balanced" quotes Jake
This is text after everything Jake `
aalmiray commented 2 years ago

I think there's no explicit handling of quotes on tables. You can however pass additional configuration to pegdown/remark to handle content/tables in the way that you need it.

jakemonO commented 2 years ago

It may be an upstream issue. I see that there’s no explicit handling yet the fact remains that its an easily repeatable issue (try it!) Maybe I’ll cross post in remark if I can get around to isolating it there…