about summary refs log tree commit diff stats
path: root/trunk/toc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/toc.sh')
-rw-r--r--trunk/toc.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/trunk/toc.sh b/trunk/toc.sh deleted file mode 100644 index fe440cb..0000000 --- a/trunk/toc.sh +++ /dev/null
@@ -1,26 +0,0 @@
1#!/bin/bash
2
3outFile="$1";
4shift 1;
5glob="$@";
6
7echo -n "Compiling $outFile"
8
9for file in $glob; do
10 title=$(grep '^title: ' $file | cut -d' ' -f2-);
11 subtitle=$(grep '^subtitle: ' $file | cut -d' ' -f2-);
12 htmlFile="${file%.txt}.html"
13 # if [[ "$title" == "Autocento of the breakfast table" ]]; then
14 # echo "#. [$subtitle]($htmlFile)" >> "$outFile";
15 # else
16 # echo "#. [$title]($htmlFile)" >> "$outFile";
17 # fi
18 if [[ -n "$subtitle" ]]; then
19 echo "#. [$title: $subtitle]($htmlFile)" >> "$outFile"
20 else
21 echo "#. [$title]($htmlFile)" >> "$outFile";
22 fi
23 echo -n "."
24done
25
26echo "Done."