From 4efe4d567ab064846cdadb4582311c2716ddb2a3 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 29 Jun 2024 13:38:33 -0300 Subject: Fix: Do not include the references block at the end of every file processed --- ChangeLog.md | 4 ++++ 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 -- cgit v1.2.3