Links in DITA Word output format
Posted: Fri Nov 25, 2016 1:55 pm
We are using the excellent DITA integration in Oxygen. But we have problem to generate links with the (still) experimental "DITA Map MS Office Word" Transformation scenario.
We enclose the links in a related-links element
In the word document the links do not appear and instead of "Related Links" each topic contains a header "Related Topics" with no content underneath.
If we list the links in the body, e.g.
...the link text appears but the links are not active (they are not formatted as Links with a specific URL).
We also tried to set args.rellinks parameter to "all" but this does not make any difference.
Is there a way to get the links in the Word Output?
Thanks so much and best regards,
Andreas
We enclose the links in a related-links element
Code: Select all
<related-links>
<link href="https://foo.com" format="pdf">
<linktext>https://foo.com/doc.pdf#page=52</linktext>
</link>
</related-links>
If we list the links in the body, e.g.
Code: Select all
<ul>
<li><xref href="http://foo.com" format="html">http://foo.com</xref></li>
<li><xref href="https://foo.com/doc.pdf" format="pdf">http://foo.com</xref></li>
</ul>
We also tried to set args.rellinks parameter to "all" but this does not make any difference.
Is there a way to get the links in the Word Output?
Thanks so much and best regards,
Andreas