python转换markdown为html表格高亮

2024-02-26 15:02 python转换markdown为html表格高亮已关闭评论

1. 安装markdwon

安装markdwon,执行命令

pip install markdown

2. 转换为html

读取.md文件(注意中文),指定encoding编码为UTF-8

with open(file_path, 'r', encoding='UTF-8') as file:
    text = file.read()
    html = markdown.markdown(text)
    print(html)
    return html

3. 表格高亮

添加extensions=['tables']

with open(file_path, 'r', encoding='UTF-8') as file:
    text = file.read()
    html = markdown.markdown(text,extensions=['tables'])
    print(html)
    return html

你可能感兴趣的文章

来源:每日教程每日一例,深入学习实用技术教程,关注公众号TeachCourse
转载请注明出处: https://teachcourse.cn/3050.html ,谢谢支持!

资源分享

分类:python 标签:,
WebView加载HTML5视频退出后无法停止播放问题解决办法 WebView加载HTML5视频退出
Python开发后端API详细介绍 Python开发后端API详细介绍
个人作品集-设计师网格Gallery 个人作品集-设计师网格Gallery
harmony学习AppStorage在多个UIAbility组件之间的应用 harmony学习AppStorage在多个U

评论已关闭!