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>
助けてください!前もって感謝します。