我无法通过 xml/xsl 转换呈现项目符号列表。我希望输出是一个带有圆形项目符号的列表。
这是xml文件-
<bulletList name="list">
<item>• Item1</item>
<item>• Item2</item>
<item>• Item3</item>
<item>• Item4</item>
<item>• Item5</item>
</bulletList>
这是相应的 XSL -
<div class="sansIcon">
<xsl:apply-templates select="content[@name='con1']" mode="impl_expandContent"/>
<ul>
<xsl:apply-templates select="bulletList[@name='list']" mode="impl_expandContent">
<xsl:for-each select="item">
<li><xsl:value-of /></li>
</xsl:for-each>
</xsl:apply-templates>
</ul>
</div>
请帮忙!提前致谢。