diff options
Diffstat (limited to 'www')
-rwxr-xr-x | www/publish.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/publish.sh b/www/publish.sh index 8e25d920..f9d9f9a7 100755 --- a/www/publish.sh +++ b/www/publish.sh @@ -70,7 +70,10 @@ TOC=$(grep -q "^x-toc-enable: true$" "$TMPFILE" && printf '%s\n' "--toc --toc-de SMART=$(pandoc -v | grep -q '2\.0' || printf '%s\n' "--smart") || SMART="" # chuck through pandoc -pandoc $TOC $SMART "$TMPFILE" -s --css /global.css "$OPTS" \ +# +# $OPTS must not be quoted, otherwise pandoc interprets '--css /headercenter.css' +# as one argument, when it is actually two. +pandoc $TOC $SMART "$TMPFILE" -s --css /global.css $OPTS \ --template template.html --metadata return="$RETURN" > "$FILE.html" # additionally, produce bare file for RSS |