I know in dita that one can access a keydef
<map>
<title>variables</title>
<keydef keys="keyName"><topicmeta><keywords><keyword>Text API</keyword></keywords></topicmeta></keydef>
</map
with a keyref statement
<keyword keyref="keyName"/>
Is it possible to access keydef from an xsl file within a dita-ot pipeline
I tried the following
<xsl:value-of select="//keydef[@keys eq 'keyName']/topicmeta/keywords/keyword/text()"/>
and
<xsl:value-of select="keyword[@keyref eq 'copyright']"/>
However these do not work.
Regards Conteh