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 --- bin/compile-book | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/compile-book') 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