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 标签:,
Ubuntu系统存在Python3 Ubuntu系统存在Python3
sql server存储过程基础语法 sql server存储过程基础语法
Android SDK “Error when loading the SDK” Android SDK “Error when
android-architect.skill android-architect.skill

评论已关闭!