original) (raw)
Bug related to Admontion and List Interaction · Issue #1004 · Python-Markdown/markdown (Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Description
Source:
import markdown
md = """
List
!!! note "Admontion"
- Paragraph Paragraph
"""
print(markdown.markdown(md, extensions=['admonition']))
Output:
-
List
Admontion
- Paragraph
Paragraph
Somehow, things get out of sync. Second paragraph under admonition should not be transformed into code.