diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/compile-book | 1 | ||||
-rwxr-xr-x | bin/compile-notes | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/bin/compile-book b/bin/compile-book index c972600..044e2e9 100755 --- a/bin/compile-book +++ b/bin/compile-book @@ -35,6 +35,7 @@ cat _common.yml >> $OUTPUT.md ; echo "" >> $OUTPUT.md # Bibliography find -name _biblio.yml | while read file; do #cat $file >> $OUTPUT.md ; echo "" >> $OUTPUT.md + echo 'bibliography:' >> $OUTPUT.md grep -v '^bibliography:' $file >> $OUTPUT.md ; echo "" >> $OUTPUT.md done diff --git a/bin/compile-notes b/bin/compile-notes index cfbbc3b..0523a71 100755 --- a/bin/compile-notes +++ b/bin/compile-notes @@ -35,6 +35,7 @@ cat _common.yml >> $OUTPUT.md ; echo "" >> $OUTPUT.md # Bibliography find -name _biblio.yml | while read file; do #cat $file >> $OUTPUT.md ; echo "" >> $OUTPUT.md + echo 'bibliography:' >> $OUTPUT.md grep -v '^bibliography:' $file >> $OUTPUT.md ; echo "" >> $OUTPUT.md done |