Running the following minimal example:
\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@mvbook{assis08,
author = {Machado de Assis},
title = {Obra completa em quatro volumes},
year = {2008},
url = {https://www.google.com},
urlaccessdate = {2018-02-17},
}
\end{filecontents*}
\PassOptionsToPackage{brazil,main=english,spanish,french}{babel}
\documentclass[12pt,a4paper,english]{abntex2}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage[
style=abnt,repeatfields=true,backend=biber,backref=true,citecounter=true]{biblatex}
\pdfstringdefDisableCommands{\let\uppercase\relax}
\addbibresource{\jobname.bib}
\begin{document}
Citing \cite{assis08}.
\printbibliography
\end{document}
Generates the url field with brackets <url> around it:
So far, so good. I like them, and they are required by abntex2. However, when I click on the link, the web page is not open. And if I hit copy the link:
It is copied including the brackets around the link, i.e., <https://www.google.com>, instead of only https://www.google.com.
Then, it is clearly that the problem is that something is making the brackets round the url as part of the link. How can I fix the links, so they are copied and opened as https://www.google.com, instead of <https://www.google.com>, while keeping the brackets <url> around the link?


