Mendeley can handle multiple URLs for each reference. When exporting to Bibtex it separates the URLs with spaces. This causes a %20 and broken links in the output.
I import references into Sharelatex from Mendeley, so I don't want to fix this manually. How can I fix the reference URL?
bibliography.bib:
@misc{MyRef,
title = {A paper},
url = {https://tex.stackexchange.com https://www.sharelatex.com/}
}
main.tex:
\documentclass{article}
\usepackage{biblatex}
\addbibresource{bibliography.bib}
\begin{document}
Reference \cite{MyRef}.
\printbibliography
\end{document}
Output:

url = {https://tex.stackexchange.com https://www.sharelatex.com/}tonote = {\url{https://tex.stackexchange.com} and \url{https://www.sharelatex.com/}}? – Mico Sep 17 '17 at 06:49url = {https://tex.stackexchange.com https://www.sharelatex.com/}, it's definitely Mendeley's job, and not the job of individual users, to provide a fix. Aside: I do not use Mendeley for my own working papers and publications, and I wouldn't advise anyone to rely on Mendeley for anything but the most inconsequential experiments. – Mico Nov 25 '20 at 17:50