我正在尝试在 Python-markdown 的帮助下使用 Markdown 语法将表格呈现为 HTML:https : //python-markdown.github.io/我尝试了此处提供的示例:https : //python-markdown.github.io/extensions/tables/from markdown import markdowns = """First Header | Second Header------------- | -------------Content Cell | Content CellContent Cell | Content Cell"""html = markdown(s)print(html)但我得到的结果是:<p>First Header | Second Header------------- | -------------Content Cell | Content CellContent Cell | Content Cell</p>怎么了?
添加回答
举报
0/150
提交
取消