加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
documentation.sh 404 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vincent Arel-Bundock 提交于 2020-06-10 01:43 . reboot
#!/usr/bin/env bash
# IMPORTANT: Run from inside the "doc" directory
# create rst directories if they do not exist
for d in $(find . -maxdepth 1 -type d)
do
mkdir "$d/rst"
done
# use pandoc to convert html to rst
for f in $(find . -name '*.html')
do
old=$(basename -- "$f")
new=$"`basename "$f" .html`.rst"
dir=$(dirname -- "$f")
echo "$f"
pandoc -o $dir/rst/$base$new $f
done
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化