mirror of
https://gitea.com/gitea/docs.git
synced 2026-03-27 14:11:03 +07:00
72 lines
2.5 KiB
Bash
72 lines
2.5 KiB
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
if sed --version 2>/dev/null | grep -q GNU; then
|
|
SED_INPLACE="sed -i"
|
|
else
|
|
SED_INPLACE="sed -i ''"
|
|
fi
|
|
|
|
$SED_INPLACE 's/</<⁠/' docs/zh-cn/installation/with-docker.zh-cn.md
|
|
$SED_INPLACE 's/<empty/<⁠empty/' docs/zh-cn/installation/with-docker.zh-cn.md
|
|
|
|
$SED_INPLACE 's/</<⁠/' docs/zh-cn/contributing/guidelines-backend.zh-cn.md
|
|
$SED_INPLACE 's/</⁠/' docs/zh-cn/contributing/guidelines-backend.zh-cn.md
|
|
$SED_INPLACE 's/<empty/<⁠empty/' docs/zh-cn/contributing/guidelines-backend.zh-cn.md
|
|
|
|
$SED_INPLACE 's/<empty/<⁠empty/' docs/zh-cn/administration/config-cheat-sheet.zh-cn.md
|
|
|
|
$SED_INPLACE 's/^url:.*//' docs/zh-cn/intro.md
|
|
$SED_INPLACE 's/^title:.*/displayed_sidebar: siderBarCN/' docs/zh-cn/intro.md
|
|
$SED_INPLACE 's/^slug:.*/slug: \/zh-cn\//' docs/zh-cn/intro.md
|
|
$SED_INPLACE 's/.\/guidelines-frontend.md/.\/guidelines-frontend/' docs/zh-cn/development/hacking-on-gitea.zh-cn.md
|
|
|
|
$SED_INPLACE 's/"version":.*/"version":"1.20-dev"/' static/latest-swagger.json
|
|
|
|
for file in `find ./docs/zh-cn/ -name "*.md"`; do
|
|
# note only works on linux, forget about it when attempting to run on macos
|
|
# hide hugo toc
|
|
$SED_INPLACE 's/{{< toc >}}//' $file
|
|
$SED_INPLACE 's/{{< version >}}/1.18.2/g' $file
|
|
$SED_INPLACE 's/{{< relref "doc/\/docs\/zh-cn/g' $file
|
|
$SED_INPLACE 's/" >}}//g' $file
|
|
$SED_INPLACE 's/\*\*Table of Contents\*\*//' $file
|
|
$SED_INPLACE 's/weight:/sidebar_position:/g' $file
|
|
done
|
|
|
|
for file in `find ./docs/zh-cn/usage/ -name "*.md"`; do
|
|
# note only works on linux, forget about it when attempting to run on macos
|
|
# hide hugo toc
|
|
$SED_INPLACE 's/title:.*//' $file
|
|
done
|
|
|
|
for file in docs/zh-cn/*; do
|
|
if [ -d $file ]; then
|
|
continue
|
|
fi
|
|
if [ "$file" == "docs/zh-cn/intro.md" ]; then
|
|
continue
|
|
fi
|
|
rm $file
|
|
done
|
|
|
|
|
|
# for file in `find ./docs/zh-cn/ -name "*.md"`; do
|
|
# trimmed=$(echo $file | cut -f 2 -d '.')
|
|
# mv $file .$trimmed.md
|
|
# done
|
|
|
|
# for file in `find ./i18n/zh-tw/docusaurus-plugin-content-docs/zh-cn/current/ -name "*.md"`; do
|
|
# trimmed=$(echo $file | cut -f 2 -d '.')
|
|
# mv $file .$trimmed.md
|
|
# done
|
|
# for file in `find ./i18n/fr-fr/docusaurus-plugin-content-docs/zh-cn/current/ -name "*.md"`; do
|
|
# trimmed=$(echo $file | cut -f 2 -d '.')
|
|
# mv $file .$trimmed.md
|
|
# done
|
|
# for file in `find ./i18n/zh-cn/docusaurus-plugin-content-docs/zh-cn/current/ -name "*.md"`; do
|
|
# trimmed=$(echo $file | cut -f 2 -d '.')
|
|
# mv $file .$trimmed.md
|
|
# done
|