diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-09 12:18:06 +0100 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-09 12:18:06 +0100 |
commit | a45b39d7995e4c0b57272d4fc286eb54e02b9c70 (patch) | |
tree | 46f3a8bafc32df8b02d5c1906137c2881e9d8ce1 /bin/compile-notes | |
parent | ab90f9241d0867206858c306c8d7fb08ee7f0275 (diff) | |
download | bookup-a45b39d7995e4c0b57272d4fc286eb54e02b9c70.tar.gz bookup-a45b39d7995e4c0b57272d4fc286eb54e02b9c70.tar.bz2 |
Unified configuration for book and notes
Diffstat (limited to 'bin/compile-notes')
-rwxr-xr-x | bin/compile-notes | 16 |
1 files changed, 16 insertions, 0 deletions
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 |