nav weight title casing awesome nav
build the docker container
docker build -t my-mkdocs .
run the docker container on localhost:9090
docker run --rm -it -p 9090:8000 -v ${PWD}:/docs my-mkdocs serve -a 0.0.0.0:8000
The section names are in the .nav.yml file in its directory. The section is sorted by its directory name but the title in the .nav.yml file is what is displayed.
The Document names are dirived from the file names and put into title case, they can be over ridden with a title: etc
in the frontmater. The documents are sorted from lowest weight:
to highest.