diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-10 16:21:34 +0100 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-10 16:21:34 +0100 |
commit | 6cf6f3fc219b210cb2a450dc69134fc0786f7e76 (patch) | |
tree | 34104aae45dadc1bfbe71b613a8383321d2d1b04 /bin/compile-notes | |
parent | dd3c246fbc3d3dbb829e1a5e4b2dadfa87286d7f (diff) | |
download | bookup-6cf6f3fc219b210cb2a450dc69134fc0786f7e76.tar.gz bookup-6cf6f3fc219b210cb2a450dc69134fc0786f7e76.tar.bz2 |
Feat: improved bibliography handling
Diffstat (limited to 'bin/compile-notes')
-rwxr-xr-x | bin/compile-notes | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/compile-notes b/bin/compile-notes index 910e180..6da65dd 100755 --- a/bin/compile-notes +++ b/bin/compile-notes @@ -33,11 +33,7 @@ cat _notes.yml >> $OUTPUT.md ; echo "" >> $OUTPUT.md cat _common.yml >> $OUTPUT.md ; echo "" >> $OUTPUT.md # Bibliography -echo 'bibliography:' >> $OUTPUT.md -find -name _biblio.yml | while read file; do - #cat $file >> $OUTPUT.md ; echo "" >> $OUTPUT.md - grep -v '^bibliography:' $file >> $OUTPUT.md ; echo "" >> $OUTPUT.md -done +$BASEDIR/bin/biblio-yml > _biblio.yml # YAML headers for file in $BASEDIR/$STRUCTURE/00*.yml; do |