XSLT and XSL-FO
I am new to XSLT and XSL-Fo. I am trying to include mark-up to format the width of columns in tables in an XML document.
This XML file is being imported into Framemaker using an automated process.
I'm assuming I should place the XSL-Fo within the colspec element's XSL mark-up. Is that correct? The colspec XSL mark-up looks like this:
<xsl:template match="colspec">
<xsl:copy>
<xsl:for-each select="@*">
<xsl:copy/>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
How do I add the colwidth mark-up to this?
|