我有这个xml:
<Chapter>
<Question>Some details in bullet format here <ul><li> point1 </li> <li></li> </ul>
</Question>
</Chapter>
我的 XSLT(1.0 版)有这个:
<xsl:for-each select="Question">
<xsl:value-of select="."/>
</xsl:for-each>
我的输出如下所示:
"Some details in bullet format here <li> point1 <li>point2<li>"
而不是预期的 html 项目符号点。
预期结果:
项目符号格式的一些细节在这里
- 点1
- 点2
请问有什么建议吗?