aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-06-29 13:38:33 -0300
committerSilvio Rhatto <rhatto@riseup.net>2024-06-29 13:38:33 -0300
commit4efe4d567ab064846cdadb4582311c2716ddb2a3 (patch)
treedd2092d20f2561a3cda699926e5aace40a12e98a
parentd52c082bf90021098bc61fa88b471b56e0a7309e (diff)
downloadbookup-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.md4
-rwxr-xr-xbin/compile-book4
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