***This is markdownized*** ***This is not markdownized*** """ md(t1,extensions=["extra"]) Yields: '
\n

HTML comment in markdown="1" block causes conversion stoppage · Issue #1012 · Python-Markdown/markdown (original) (raw)

@git1sal

from markdown import markdown as md

t1 = """

This is markdownized

This is not markdownized

"""

md(t1,extensions=["extra"])

Yields:

'<div>\n<p><strong><em>This is markdownized</em></strong></p>\n<!---foobar-->\n\n***This is not markdownized***\n\n</div>'

Anything within the <div> after the HTML comment is not processed.

Bug, or just unexpected behavior for me?

Relevant fact: PHP Extra does not have this behavior; it does continue processing as markdown after the comment.