Showing:

Documentation
Parameters
Used by
References
Imported from
Source
Stylesheet conceptdisplay.xsl
Imported from
Template *[contains(@class, ' topic/link ')][@type='concept']related-links:group.concept{http://dita-ot.sourceforge.net/ns/200709/related-links}get-group
Documentation

Description

 Concepts have their own group. 
Namespace http://dita-ot.sourceforge.net/ns/200709/related-links
Match *[contains(@class, ' topic/link ')][@type='concept']
Mode {http://dita-ot.sourceforge.net/ns/200709/related-links}get-group
Used by
Import precedence 5
Source
<xsl:template match="*[contains(@class, ' topic/link ')][@type='concept']" mode="related-links:get-group" name="related-links:group.concept">
  <xsl:text>concept</xsl:text>
</xsl:template>
Template *[contains(@class, ' topic/link ')][@type='concept']related-links:group-priority.concept{http://dita-ot.sourceforge.net/ns/200709/related-links}get-group-priority
Documentation

Description

 Priority of concept group. 
Namespace http://dita-ot.sourceforge.net/ns/200709/related-links
Match *[contains(@class, ' topic/link ')][@type='concept']
Mode {http://dita-ot.sourceforge.net/ns/200709/related-links}get-group-priority
Used by
Import precedence 5
Source
<xsl:template match="*[contains(@class, ' topic/link ')][@type='concept']" mode="related-links:get-group-priority" name="related-links:group-priority.concept">
  <xsl:value-of select="3"/>
</xsl:template>
Template *[contains(@class, ' topic/link ')][@type='concept']related-links:result.concept{http://dita-ot.sourceforge.net/ns/200709/related-links}result-group
Documentation

Description

 Wrapper for concept group: "Related concepts" in a <div>. 
Namespace http://dita-ot.sourceforge.net/ns/200709/related-links
Match *[contains(@class, ' topic/link ')][@type='concept']
Mode {http://dita-ot.sourceforge.net/ns/200709/related-links}result-group
Used by
References
Template getString
Variable newline
Parameters
QName Namespace
links No namespace
Import precedence 5
Source
<xsl:template match="*[contains(@class, ' topic/link ')][@type='concept']" mode="related-links:result-group" name="related-links:result.concept">
  <xsl:param name="links"/>
  <div class="relinfo relconcepts">
    <strong>
      <xsl:call-template name="getString">
        <xsl:with-param name="stringName" select="'Related concepts'"/>
      </xsl:call-template>
    </strong>
    <br/>
    <xsl:value-of select="$newline"/>
    <xsl:copy-of select="$links"/>
  </div>
  <xsl:value-of select="$newline"/>
</xsl:template>