aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/compile-book15
-rwxr-xr-xbin/compile-notes11
2 files changed, 16 insertions, 10 deletions
diff --git a/bin/compile-book b/bin/compile-book
index 930e673..2907e98 100755
--- a/bin/compile-book
+++ b/bin/compile-book
@@ -8,6 +8,7 @@ BASENAME="`basename $0 | sed -e 's/\(.\)/\U\1/'`"
DIRNAME="`dirname $0`"
BASEDIR="$DIRNAME/.."
STRUCTURE="structure/book"
+CONTENT="content/sections"
OUTPUT="${1:-book}"
REVISION="$2"
DATE="$3"
@@ -37,12 +38,14 @@ for file in $BASEDIR/$STRUCTURE/00*.md; do
done
# Sections
-find content/sections -type f | grep '\.md$' | sort | while read file; do
- cat $file >> $OUTPUT.md
- echo "" >> $OUTPUT.md
- cat $BASEDIR/templates/book/references.md >> $OUTPUT.md
- echo "" >> $OUTPUT.md
-done
+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/book/references.md >> $OUTPUT.md
+ echo "" >> $OUTPUT.md
+ done
+fi
# Footers
for file in $BASEDIR/$STRUCTURE/99*.md; do
diff --git a/bin/compile-notes b/bin/compile-notes
index 02a9420..24c98ea 100755
--- a/bin/compile-notes
+++ b/bin/compile-notes
@@ -8,6 +8,7 @@ BASENAME="`basename $0 | sed -e 's/\(.\)/\U\1/'`"
DIRNAME="`dirname $0`"
BASEDIR="$DIRNAME/.."
STRUCTURE="structure/notes"
+CONTENT="content/notes"
OUTPUT="${1:-notes}"
REVISION="$2"
DATE="$3"
@@ -37,10 +38,12 @@ for file in $BASEDIR/$STRUCTURE/00*.md; do
done
# Content
-find content/notes -type f | grep '\.md$' | sort | while read file; do
- cat $file >> $OUTPUT.md
- echo "" >> $OUTPUT.md
-done
+if [ -d "$CONTENT" ]; then
+ find $CONTENT -type f | grep '\.md$' | sort | while read file; do
+ cat $file >> $OUTPUT.md
+ echo "" >> $OUTPUT.md
+ done
+fi
# Bibliography section
cat $BASEDIR/templates/notes/bibliography.md >> $OUTPUT.md