diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-29 13:38:33 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-29 13:38:33 -0300 |
commit | 4efe4d567ab064846cdadb4582311c2716ddb2a3 (patch) | |
tree | dd2092d20f2561a3cda699926e5aace40a12e98a | |
parent | d52c082bf90021098bc61fa88b471b56e0a7309e (diff) | |
download | bookup-4efe4d567ab064846cdadb4582311c2716ddb2a3.tar.gz bookup-4efe4d567ab064846cdadb4582311c2716ddb2a3.tar.bz2 |
Fix: Do not include the references block at the end of every file processed0.1.7
-rw-r--r-- | ChangeLog.md | 4 | ||||
-rwxr-xr-x | bin/compile-book | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog.md b/ChangeLog.md index c6840d5..f115453 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,9 @@ # ChangeLog +## v0.1.7 - 2024-06-29 + +* [x] Do not include the references block at the end of every file processed. + ## v0.1.6 - 2024-06-19 * [x] Apply fixes to the archive/permalink logic. diff --git a/bin/compile-book b/bin/compile-book index 1c57b2e..e68a36d 100755 --- a/bin/compile-book +++ b/bin/compile-book @@ -53,8 +53,8 @@ if [ -d "$CONTENT" ]; then find $CONTENT -type f | grep '\.md$' | sort | while read file; do cat $file >> $OUTPUT.md echo "" >> $OUTPUT.md - cat $BASEDIR/$TEMPLATES/references.md >> $OUTPUT.md - echo "" >> $OUTPUT.md + #cat $BASEDIR/$TEMPLATES/references.md >> $OUTPUT.md + #echo "" >> $OUTPUT.md done fi |