Files
ipsw/hack/make/docs
T
2023-04-12 20:00:05 -06:00

45 lines
879 B
Bash
Executable File

#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
if [[ "${TRACE-0}" == "1" ]]; then
set -o xtrace
fi
if [[ "${1-}" =~ ^-*h(elp)?$ ]]; then
echo 'Usage: hack/make/docs
This script generates markdown docs from cli.
'
exit
fi
move_swagger() {
if [[ -f api/swagger.json ]]; then
cp api/swagger.json www/static/api/swagger.json
fi
}
main() {
move_swagger
SED="sed"
if which gsed >/dev/null 2>&1; then
SED="gsed"
fi
rm -rf www/docs/cli/**/*.md
go run ./cmd/ipsw/main.go docs
# go run . schema -o ./www/docs/static/schema.json
fd .md www/docs/cli/ | xargs $SED -i'' \
-e ':a' -e 'N' -e '$!ba' -e 's/### Examples\n\n```/### Examples\n\n```bash/g'
# -e 's/^## /# /g' \
# -e 's/^### /## /g' \
# -e 's/^#### /### /g' \
# -e 's/^##### /#### /g'
}
main "$@"