2022-02-16 00:53:01 -05:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd `dirname $0`
|
2023-09-06 03:07:37 -04:00
|
|
|
echo `dirname $0`
|
|
|
|
for item in *; do
|
|
|
|
[[ -d $item && -f $item/mkdocs.sh ]] && $item/mkdocs.sh
|
|
|
|
done
|
|
|
|
echo all subdirectories done
|
2023-08-25 17:45:47 -04:00
|
|
|
docroot="./"
|
|
|
|
templates=$docroot"pandoc_templates"
|
|
|
|
. $templates"/mkdocs.cfg"
|