I've learned that I can use the NoHyper environment to prevent hyperlinks in the document, e.g.,
\begin{NoHyper}
\begin{itemize*}[label={}]
\item “Neural Named Entity Recognition and Temporal Relation
Extraction”,\footnote{\href{https://ethos.bl.uk/OrderDetails.do?uin=uk.bl.ethos.832900}{“Neural Named Entity Recognition and Temporal Relation Extraction”} (Available via ethos.bl.uk.)\label{sa-nner}}
\end{itemize*}
\end{NoHyper}
This makes it so that I get a footnote, without a linked footnote marker. Great! But could I also locally turn hyperref back on inside the footnote, so that the \href is activated? I'm imagining a YesHyper command that would achieve the desired effect, but I don't know how to create it:
MNWE
\documentclass{article}
\usepackage{hyperref}
\usepackage[inline]{enumitem}
\begin{document}
\begin{NoHyper}
\begin{itemize*}[label={}]
\item “Neural Named Entity Recognition and Temporal Relation
Extraction”,\footnote{\begin{YesHyper}\href{https://ethos.bl.uk/OrderDetails.do?uin=uk.bl.ethos.832900}{%
“Neural Named Entity Recognition and Temporal Relation Extraction”}\end{YesHyper}
(Available via ethos.bl.uk.)\label{sa-nner}}
\end{itemize*}
\end{NoHyper}
\end{document}
