4 Star 29 Fork 5

prehisle/ydpic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build_toc.py 355 Bytes
一键复制 编辑 原始数据 按行查看 历史
prehisle 提交于 2020-04-19 13:25 . chore: build toc
from md_toc import build_toc
import re
toc = build_toc("readme.md", keep_header_levels=5)
with open("readme.md", "rb") as f:
text = f.read().decode("utf-8")
text = re.sub("<!-- toc -->.*?<!-- toc -->", "<!-- toc -->\n%s<!-- toc -->" % toc, text, 0, re.M | re.S)
if text:
with open("readme.md", "wb") as f:
f.write(text.encode("utf-8"))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/prehisle_admin/ydpic.git
[email protected]:prehisle_admin/ydpic.git
prehisle_admin
ydpic
ydpic
master

搜索帮助