traced

Combined emphasis and strong emphasis wrong output · Issue #979 · Python-Markdown/markdown (original) (raw)

Not sure ***word*** is actually supported, although it does seem to work in general. But with 3.2.2:

>>> markdown.markdown("""traced ***along*** bla **blocked** if other ***or***""")
'<p>traced <strong><em>along</em></strong> bla <strong>blocked*<em> if other </em></strong>or***</p>'

I.e. the strong emphasis on "blocked" is not ended, but emphasis started instead.