I have a simple xslt that transforms an xml to an xsl-fo but when my xml is generated it produces bullet points in
•
when I use my transformation to transform to xsl-fo and pass that to ecrion to render a pdf it does not recognise the html code for bullet point I would like to add some condition to my XSLT to change that to a full black circle bullet point any suggestion please
<?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>