代码拉取完成,页面将自动刷新
同步操作将从 海宝宝/k230_docs 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# 移除封面、免责声明等内容
import glob
if __name__ == '__main__':
docs = glob.glob("**/*.md", recursive=True)
# docs = glob.glob("zh/03_other/K230_SDK_版本说明.md")
for d in docs:
with open(d, 'rb') as f:
text = f.read()
# 删除封面
pos1 = text.find(b'![cover]')
if pos1 < 0:
print(f"{d} does not match ![cover]")
else:
pos2 = text.find(b'[TOC]')
if pos2 < 0:
pos2 = text.find(b'[toc]')
if pos2 < 0:
pos3 = text.find(b'page-break-after')
if pos3 >= 0:
pos2 = text.find(b'page-break-after', pos3 + 16)
if pos2 >= 0:
pos2 += 31
else:
pos2 = pos3 + 31
else:
pos2 += 5
else:
pos2 += 5
if pos1 < 0 or pos2 < 0:
print(f"{d} does not match ![cover]")
else:
text = text[:pos1] + text[pos2:]
# 删除前言
pos1 = text.find('## 前言'.encode('utf-8'))
pos2 = text.find(b'\n## ', pos1 + 10)
if pos2 < 0:
pos2 = text.find(b'\r## ', pos1 + 10)
if pos1 < 0 or pos2 < 0:
print(f"{d} does not match 前言")
else:
text = text[:pos1] + text[pos2:]
with open(d, 'wb') as f:
f.write(text)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。