可能问题在于我对应该发生的事情的理解。这是我所做的:
>>> import markdown2
>>> rawtext = "Getting the Gist of Markdown's Formatting Syntax ------------------------------------------------ This page offers a brief "
>>> html = markdown2.markdown(rawtext)
>>> html
u"<p>Getting the Gist of Markdown's Formatting Syntax ------------------------------------------------ This page offers a brief </p>\n"
我尝试使用 markdown 而不是 markdown2,但得到了相同的结果。我原以为许多“-”会导致“Getting the Gist of Markdown's Formatting Syntax”呈现为 H1。我错过了什么?