from 'round' (not supported in browsers' <ul> 'type' attribute)
to 'circle', which is supported.
Both are already supported in FO stylesheet.
<xsl:param name="itemsymbol" select="'default'"/>
<xsl:choose>
<!-- Change this list if you want to change the order of symbols -->
- <xsl:when test="$itemsymbol = 'disc'">round</xsl:when>
+ <xsl:when test="$itemsymbol = 'disc'">circle</xsl:when>
<xsl:when test="$itemsymbol = 'round'">square</xsl:when>
<xsl:otherwise>disc</xsl:otherwise>
</xsl:choose>