Skip to content

Instantly share code, notes, and snippets.

@elyezer
Created February 20, 2018 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elyezer/30e83d992dd967f99f1f217e3e7ecbf6 to your computer and use it in GitHub Desktop.
Save elyezer/30e83d992dd967f99f1f217e3e7ecbf6 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
#
# For each file found by `find`, generate a entry on the toctree in
# `docs/api.rst`.
#
# NOTE: This script should be run from the repository docs directory. That is,
# this script should be run from this script's ../docs directory.
set -euo pipefail
# Recreate the api toctree document with its header
cat >"api.rst" <<EOF
API Documentation
=================
This is the Camayoc API documentation. It is mostly auto generated from the
source code. This section of the documentation should be treated as a handy
reference for developers, not a gospel.
.. toctree::
EOF
# List every rst file on the toctree
find api -type f -name '*.rst' | sed "s/.rst$//" | sort | while read file_name; do
echo " ${file_name}" >>"api.rst"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment