Markdownify conversion results in extra `\` before end parentheses `)`
vivienneprince opened this issue · 1 comments
vivienneprince commented
Example:
from markdownify import markdownify as md
example_html = '<h2>Example Heading (Heading 2)</h2>'
mdtxt = md(example_html, heading_style = 'ATX')
>>> ## Example Heading (Heading 2\)It doesn't consistently happen; sometimes end parentheses in headings have no issues.
So far I haven't seen this happen within p tags, but I have seen some periods (.) get converted into \. in p tags.