我有一个简单的 xslt,可以将 xml 转换为 xsl-fo,但是当我的 xml 生成时,它会在
•
当我使用我的转换转换为 xsl-fo 并将其传递给 ecrion 以呈现 pdf 时,它无法识别项目符号点的 html 代码我想向我的 XSLT 添加一些条件以将其更改为一个完整的黑色圆圈项目符号点请有任何建议
<?xml version="1.0"?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes" indent="yes" />
<xsl:template match="/doc">
<Generic><xsl:apply-templates /></Generic>
</xsl:template>
<xsl:template match="*|@*">
<xsl:copy>
<xsl:apply-templates select="@*" />
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<xsl:template match="•">
<xsl:copy>
<xsl:apply-templates select="•" />
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
</xsl:transform>