8cfb02ee99
and a banner. Broke all my existing markdown builds, because I have a hundred files that do not fit the new machinery And now I have to provide navbars for each directory, and update the mkdocs.sh in each directory And add a recursive invocation of mkdocs in subdirectories
9 lines
147 B
Bash
9 lines
147 B
Bash
#!/bin/bash
|
|
set -e
|
|
echo `dirname $0`
|
|
cd `dirname $0`
|
|
docroot="../"
|
|
templates=$docroot"pandoc_templates"
|
|
destdir="../../"
|
|
. $templates"/mkdocs.cfg"
|