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

当前文章价值4.99元,扫一扫支付后添加微信提供帮助!(如不能解决您的问题,可以申请退款)

你可能感兴趣的文章

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

资源分享

分类:python 标签:,
PopupWindow实现微信绑定开户行弹窗效果 PopupWindow实现微信绑定开户行
你知道,哪些即时通信平台? 你知道,哪些即时通信平台?
浅谈Dialog的dismiss和removeDialog 浅谈Dialog的dismiss和removeD
Android开发之深入理解Android 7.0系统权限更改相关文档 Android开发之深入理解Android

评论已关闭!