Markdown格式化进入我的XSL并保持其空白和中断。我希望将它转换为实际的HTML元素以删除所有空格。
以下是incoming data & HTML source的视图,以及用于处理它的代码。
<xsl:value-of select="description-continued" disable-output-escaping="yes" />
XSL输出方法已包含indent="no"
答案 0 :(得分:0)
您可能只需要(如果没有空格字符组真的很重要):
<xsl:template match="text()">
<xsl:value-of select="normalize-space()"/>
</xsl:template>
答案 1 :(得分:0)
<xsl:value-of select="normalize-space(description-continued)" disable-output-escaping="yes" />