AntennaHouse / pdf5-ml

Antenna House PDF5-ML DITA-OT Plug-in
23 stars 9 forks source link

Coding mistake in <xsl:template name="makePostNoteSub"> #58

Closed ToshihikoMakita closed 5 years ago

ToshihikoMakita commented 5 years ago
<fo:inline>
    <xsl:value-of select="ahf:getVarValue('Postnote_Title')"/>
    <xsl:call-template name="getVarValueWithLangAsText">
        <xsl:with-param name="prmVarName" select="'atsPostnoteInline'"/>
        <xsl:with-param name="prmElem" select="$prmTopicContent"/>
    </xsl:call-template>
</fo:inline>

should be modified as:

<fo:inline>
    <xsl:copy-of select="ahf:getAttributeSet('atsPostnoteInline')"/>
    <xsl:call-template name="getVarValueWithLangAsText">
        <xsl:with-param name="prmVarName" select="'Postnote_Title'"/>
        <xsl:with-param name="prmElem" select="$prmTopicContent"/>
    </xsl:call-template>
</fo:inline>