diff --git a/exportMarkdownReferences.sh b/exportMarkdownReferences.sh index 131fcd9..e9afa23 100755 --- a/exportMarkdownReferences.sh +++ b/exportMarkdownReferences.sh @@ -22,7 +22,7 @@ read refs command -v pandoc >/dev/null 2>&1 || { echo "Cannot find pandoc in path. Edit the PATH variable in citeServiceTemplate-pandoc-bib-script.sh"; exit 0;} # Pass the list of pandoc-formated references to pandoc. -echo "$refs" | pandoc -t markdown-citations --no-wrap --bibliography="$bibfile" 2>/dev/null | tail -n+5 | grep -v "" +echo "$refs" | pandoc -t markdown-citations --wrap=none --bibliography="$bibfile" 2>/dev/null | tail -n+5 | grep -v "" exit 0