Switched Pandoc scripts from .bib to .json

This commit is contained in:
Nathan Schneider
2026-01-14 16:19:46 -07:00
parent e753c9b5a0
commit 0bf134e323
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ cp "$FILENAME" "$TMP_IN_FILE"
# Convert the file using pandoc # Convert the file using pandoc
iconv -t utf-8 "$TMP_IN_FILE" | pandoc -s -f markdown+smart \ iconv -t utf-8 "$TMP_IN_FILE" | pandoc -s -f markdown+smart \
--citeproc --bibliography "$HOME/Zotero/lib.bib" \ --citeproc --bibliography "$HOME/Zotero/lib.json" \
--pdf-engine=xelatex \ --pdf-engine=xelatex \
--resource-path="$CURRENT_DIR" \ --resource-path="$CURRENT_DIR" \
-t "$OUTPUT_FORMAT" $PANDOC_OPTS -o "$TMP_OUT_FILE" -t "$OUTPUT_FORMAT" $PANDOC_OPTS -o "$TMP_OUT_FILE"
+1 -1
View File
@@ -17,7 +17,7 @@ fi
# Command content (see also ~/.emacs) # Command content (see also ~/.emacs)
# remove "--citeproc" for older versions # remove "--citeproc" for older versions
cmd="pandoc -s -f markdown+smart --citeproc --bibliography $HOME/Zotero/lib.bib --variable fontsize=11pt -o ./output/$fname" cmd="pandoc -s -f markdown+smart --citeproc --bibliography $HOME/Zotero/lib.json --variable fontsize=11pt -o ./output/$fname"
# Create output/ directory # Create output/ directory
if [ ! -d 'output' ]; then if [ ! -d 'output' ]; then