WebHelp child link whith topic empty titles
Posted: Tue Feb 05, 2019 11:50 am
				
				Hi,
Oxygen WebHelp plugin permit to display "child link" through webhelp.show.child.links parameter.
When a subtopic have an empty title (<title/>), a blank appear in this child link list.
I would like to generate automatically a title in this list (when is empty) depends on topic type : "Concept topic" for Concept, "Tasks topic" for Tasks, etc.
I saw that list is generated here in plugins\org.dita.html5\xsl\rel-links.xsl:
This template tests if a topic/linktext is present or not:
Do you know where topic/linktext is generated in preprocess to complete it with my generated texts?
Thanks.
			Oxygen WebHelp plugin permit to display "child link" through webhelp.show.child.links parameter.
When a subtopic have an empty title (<title/>), a blank appear in this child link list.
I would like to generate automatically a title in this list (when is empty) depends on topic type : "Concept topic" for Concept, "Tasks topic" for Tasks, etc.
I saw that list is generated here in plugins\org.dita.html5\xsl\rel-links.xsl:
Code: Select all
<!--basic child processing-->
<xsl:template match="*[contains(@class, ' topic/link ')][@role = ('child', 'descendant')]" priority="2" name="topic.link_child">...Code: Select all
 <!--use linktext as linktext if it exists, otherwise use href as linktext-->
          <xsl:choose>
            <xsl:when test="*[contains(@class, ' topic/linktext ')]">
              <xsl:apply-templates select="*[contains(@class, ' topic/linktext ')]"/>
            </xsl:when>
            <xsl:otherwise>
              <!--use href-->
              <xsl:call-template name="href"/>
            </xsl:otherwise>
          </xsl:choose>Thanks.