为什么表格在 Python-markdown 中不起作用?

我正在尝试在 Python-markdown 的帮助下使用 Markdown 语法将表格呈现为 HTML:https : //python-markdown.github.io/


我尝试了此处提供的示例:https : //python-markdown.github.io/extensions/tables/


from markdown import markdown


s = """

First Header  | Second Header

------------- | -------------

Content Cell  | Content Cell

Content Cell  | Content Cell

"""


html = markdown(s)

print(html)

但我得到的结果是:


<p>First Header  | Second Header

------------- | -------------

Content Cell  | Content Cell

Content Cell  | Content Cell</p>

怎么了?


喵喔喔
浏览 248回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python