我是全新的使用XSL,所以如果有任何信息,我忽略包括,只是让我知道.
<xsl:value-of select="@Description/>
并显示,在浏览器中渲染,如:
<div>I can't do anything about the html entities existing in the text.</div> <div>This includes quotes,like "Hello World" and sometimes whitespaces. </div>
我可以做什么来使这个字符串呈现为html,以便< div>< / div>导致换行,&给我“和”给我一个空间?
我可以详细说明我已经尝试过的那些没有工作的事情,但我不知道这是否相关.
解决方法
我想你想设置如下属性:
<xsl:value-of select="@Description" disable-output-escaping="yes"/>