Skip to content

Commit

Permalink
Update exportMarkdownReferences.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanson authored Feb 4, 2018
1 parent 5787180 commit dd4cbde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exportMarkdownReferences.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 "</div>"
echo "$refs" | pandoc -t markdown-citations --wrap=none --bibliography="$bibfile" 2>/dev/null | tail -n+5 | grep -v "</div>"

exit 0

1 comment on commit dd4cbde

@dsanson
Copy link
Owner Author

@dsanson dsanson commented on dd4cbde Feb 4, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated to use --wrap=none instead of the no-longer-supported --no-wrap option. Might help with Issue #1.

Please sign in to comment.