mirror of
https://gitea.com/gitea/docs.git
synced 2026-06-11 12:41:27 +00:00
relrefs from upstream is in the format of `[text]({{< relref "doc/<path under doc>.md" >}})`, for example, `[instructions]({{< relref "doc/installation/from-source.en-us.md" >}})`. In this PR, use bash scripts to remove `{{< relref "doc/`, `.en-us`/`.zh-cn` and `" >}}` parts so the link can be used by [docusaurus](https://docusaurus.io/docs/markdown-features/links)
Related: https://github.com/go-gitea/gitea/pull/24979, might need to backport this PR into 1.19
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Reviewed-on: https://gitea.com/gitea/gitea-docusaurus/pulls/18
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: HesterG <hestergong@gmail.com>
Co-committed-by: HesterG <hestergong@gmail.com>
43 lines
1.2 KiB
Bash
43 lines
1.2 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/<empty/<⁠empty/' docs/administration/config-cheat-sheet.en-us.md
|
|
$SED_INPLACE 's/^url:.*//' docs/intro.md
|
|
$SED_INPLACE 's/^slug:.*/slug: \//' docs/intro.md
|
|
$SED_INPLACE 's/.\/guidelines-frontend.md/.\/guidelines-frontend/' docs/development/hacking-on-gitea.en-us.md
|
|
|
|
$SED_INPLACE 's/"version":.*/"version":"1.20-dev"/' static/latest-swagger.json
|
|
|
|
for file in `find ./docs/ -name "*.md"`; do
|
|
# hide hugo toc
|
|
$SED_INPLACE 's/{{< toc >}}//' $file
|
|
$SED_INPLACE 's/{{< version >}}/main-nightly/g' $file
|
|
$SED_INPLACE 's/{{< relref "doc\///g' $file
|
|
$SED_INPLACE 's/.en-us.md/.md/g' $file
|
|
$SED_INPLACE 's/" >}}//g' $file
|
|
$SED_INPLACE 's/\*\*Table of Contents\*\*//' $file
|
|
$SED_INPLACE 's/weight:/sidebar_position:/g' $file
|
|
#sed -i 's/^slug:.*//' $file
|
|
done
|
|
|
|
for file in docs/*; do
|
|
if [ -d $file ]; then
|
|
continue
|
|
fi
|
|
if [ "$file" == "docs/intro.md" ]; then
|
|
continue
|
|
fi
|
|
rm $file || true
|
|
done
|
|
|
|
for file in `find ./docs/ -name "*.en-us.md"`; do
|
|
mv "${file}" "${file/.en-us/}"
|
|
done
|