diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/compile-book | 10 | ||||
-rwxr-xr-x | bin/compile-notes | 16 |
2 files changed, 22 insertions, 4 deletions
diff --git a/bin/compile-book b/bin/compile-book index 75c417b..f452d4b 100755 --- a/bin/compile-book +++ b/bin/compile-book @@ -7,6 +7,7 @@ BASENAME="`basename $0 | sed -e 's/\(.\)/\U\1/'`" DIRNAME="`dirname $0`" BASEDIR="$DIRNAME/.." +STRUCTURE="structure/book" OUTPUT="${1:-book}" REVISION="$2" DATE="$3" @@ -15,7 +16,8 @@ DATE="$3" rm -f $OUTPUT.md $OUTPUT.Rmd # Bookup config -cat _bookup.yml >> $OUTPUT.md ; echo "" >> $OUTPUT.md +cat _book.yml >> $OUTPUT.md ; echo "" >> $OUTPUT.md +cat _common.yml >> $OUTPUT.md ; echo "" >> $OUTPUT.md # Bibliography find -name _biblio.yml | while read file; do @@ -23,13 +25,13 @@ find -name _biblio.yml | while read file; do done # YAML headers -for file in $BASEDIR/structure/00*.yml; do +for file in $BASEDIR/$STRUCTURE/00*.yml; do cat $file >> $OUTPUT.md echo "---" >> $OUTPUT.md done # Markdown headers -for file in $BASEDIR/structure/00*.md; do +for file in $BASEDIR/$STRUCTURE/00*.md; do cat $file >> $OUTPUT.md echo "" >> $OUTPUT.md done @@ -43,7 +45,7 @@ find content/sections -type f | grep '\.md$' | sort | while read file; do done # Footers -for file in $BASEDIR/structure/99*.md; do +for file in $BASEDIR/$STRUCTURE/99*.md; do cat $file >> $OUTPUT.md echo "" >> $OUTPUT.md done diff --git a/bin/compile-notes b/bin/compile-notes index 1e55dcc..efeca68 100755 --- a/bin/compile-notes +++ b/bin/compile-notes @@ -7,6 +7,7 @@ BASENAME="`basename $0 | sed -e 's/\(.\)/\U\1/'`" DIRNAME="`dirname $0`" BASEDIR="$DIRNAME/.." +STRUCTURE="structure/notes" OUTPUT="${1:-notes}" REVISION="$2" DATE="$3" @@ -14,6 +15,21 @@ DATE="$3" # Remove any dangling output files rm -f $OUTPUT.md +# Notes config +cat _notes.yml >> $OUTPUT.md ; echo "" >> $OUTPUT.md +cat _common.yml >> $OUTPUT.md ; echo "" >> $OUTPUT.md + +# Bibliography +find -name _biblio.yml | while read file; do + cat $file >> $OUTPUT.md ; echo "" >> $OUTPUT.md +done + +# YAML headers +for file in $BASEDIR/$STRUCTURE/00*.yml; do + cat $file >> $OUTPUT.md + echo "---" >> $OUTPUT.md +done + # Content find content/notes -type f | grep '\.md$' | sort | while read file; do cat $file >> $OUTPUT.md |