If `` has tags nested underneath it, the `` tag is surrounded by `` tags, breaking the HTML. ```py from markdown import markdown text = """# My Header Test Something Test div Some paragraph Some paragraph Something else """ print(markdown(text)) ``` Results in: It seems like works correctly, so not 100% why the difference.