Working on a custom output file - can't figure out languages or senses, as they show up in the statblock export. I have tried many permutations of:
Additionally, is there any way to shorten the text containers for statistics and saves? Right now using:
These output fill text "Strength" instead of Str, and "Fortitude Save" instead of Fort. Anyone have any pointers, or tackled this before?
Code:
<xsl:apply-templates select="languages/@language"/>
<xsl:apply-templates select="senses"/>
Additionally, is there any way to shorten the text containers for statistics and saves? Right now using:
Code:
<xsl:template match="save">
<strong><xsl:value-of select="@name"/>:</strong><xsl:value-of select="@save"/>
</xsl:template>
and
<xsl:template match="attribute">
<strong><xsl:value-of select="@name"/></strong>: <xsl:value-of select="attrvalue/@text"/>(<xsl:value-of select="attrbonus/@text"/>),
</xsl:template>
These output fill text "Strength" instead of Str, and "Fortitude Save" instead of Fort. Anyone have any pointers, or tackled this before?