Page 1 of 1

Add URL to map/TOC

Posted: Wed Nov 17, 2021 1:13 am
by AnalogKid82
Is it possible to add a link to a URL, such as an external site (www.mysite.com) as a map entry so that it appears as a clickable link in the output TOC? We publish to Fluid Topics. Antidot told us to use the following, but the output TOC only shows the navtitle text and the text is unlink:

<topicref href="https://docs.veracode.com/r/About_Veracode_API_Scanning" locktitle="yes">
<topicmeta>
<navtitle>Getting Started with API Scanning</navtitle>
</topicmeta>
</topicref>

Re: Add URL to map/TOC

Posted: Wed Nov 17, 2021 7:57 am
by Radu
Hi,

Usually a web link to an external web site should add two more attributes on the topicref element:

Code: Select all

<topicref href="https://docs.veracode.com/r/About_Veracode_API_Scanning" locktitle="yes" scope="external" format="html">
You can try to publish to plain HTML5 to see if that works. If publishing to FluidTopics will still not work maybe you can contact them about this.

Regards,
Radu

Re: Add URL to map/TOC

Posted: Mon Dec 13, 2021 5:28 pm
by AnalogKid82
Thanks Radu!