So...
I have a calculated column for multi-lingual documents so that I can have the English and French titles usable in document library views. I turned on Document IDs and use the following code:
=CONCATENATE("<a href='**Site**/_layouts/15/DocIdRedir.aspx?ID="&[Document ID Value]&"'>"&[Title (French Translation)]&"</a>")
This solution works for default views. However. When you search within the document library using the embedded search, the Calculated column reverts to...
"<a href='**Site**/_layouts/15/DocIdRedir.aspx?ID="&[Document ID Value]&"'>"&[Title (French Translation)]&"</a>"
Note the leading and ending double quotes.
Thus, SP doesnt render the link anymore and instead just shows the code for the link.
Question:
Is there a way to override the behaviour change?
Is there a Jquery solution that can just remove the double quotes around the code, thus forcing the browser to render the link correctly?