我试图在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>

怎么了?

最佳答案

由于表是扩展,因此您需要将其名称传递给markdown.markdown:
html = markdown(s, extensions=['tables'])
https://python-markdown.github.io/extensions/

关于python - 为什么表在Python-markdown中不起作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53694529/

10-14 17:44