From a4647065b80c090e79149835a63b32ce1f9cd1d0 Mon Sep 17 00:00:00 2001 From: Nathan Schneider Date: Fri, 29 Apr 2022 21:23:48 -0600 Subject: [PATCH] updated --citeproc for new pandoc version --- .scripts/pandout.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.scripts/pandout.sh b/.scripts/pandout.sh index 5790f28..820cc0d 100755 --- a/.scripts/pandout.sh +++ b/.scripts/pandout.sh @@ -16,7 +16,8 @@ if [ -z "$fname" ]; then fi # Command content (see also ~/.emacs) -cmd="pandoc -s -f markdown+smart --bibliography $HOME/Zotero/lib.bib --variable fontsize=11pt -o ./output/$fname" +# remove "--citeproc" for older versions +cmd="pandoc -s -f markdown+smart --citeproc --bibliography $HOME/Zotero/lib.bib --variable fontsize=11pt -o ./output/$fname" # Create output/ directory if [ ! -d 'output' ]; then