这是我的XML输出中显示的内容(注意换行符)
<root>
<Item type="Comment">
<comment>this is a test
this is a test
this is a test</comment>
</Item>
</root>
在我的样式表中
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="urn:user-scripts">
<xsl:output method="html" omit-xml-declaration="yes" standalone="yes" indent="yes" cdata-section-elements="script msxsl:script"/>
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="/Root">
<xsl:apply-templates select="Item"/>
</xsl:template>
<xsl:template match="Item[@type='Comment']">
<html>
<head>
<title>
Comment: <xsl:value-of select="comment_no"/>
</title>
</head>
<style>
* {
font-family: "Arial", sans-serif;
font-size: 10pt;
}
body {
min-width: 775px;
max-width: 775px;
margin-left: auto;
margin-right: auto;
}
td {
padding: 0px;
}
.layoutTable {
width: 100%;
}
.fieldValue {
width: 99%;
padding-left: 7px;
}
.layoutTable {
width: 100%;
}
div.layoutBin {
page-break-inside: avoid;
overflow: hidden;
border: solid;
border-width: 1px;
margin-bottom: 10px;
padding-left: 3px;
padding-right: 3px;
}
</style>
<body>
<div class="layoutBin" id="keyInfo">
<div class="left" style="width: 25%">
<table class="layoutTable">
<tr>
<td class="fieldValue">
<xsl:value-of select="comment"/>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
删除换行符,我的浏览器会在一行中显示结果。
如何保留/显示换行符?
答案 0 :(得分:0)
在HTML中,换行符通常不重要。他们的处理方式与其他空格相同 - 变成了单个单词空间。因此,您无法通过查看页面来判断DOM中是否存在文字换行符。
您有几种选择:
white-space: pre;
或white-space: pre-wrap;
。 (这是最简单的,因为你已经编写了自己的CSS)。请注意:这也会使您插入的所有其他文字变得重要,因此您可能希望使用xsl:text
标记。br
标记代替换行符。div
(或段落或类似)您选择的内容取决于您对文本的处理方式。
xsl:preserve-space元素可能最初似乎是您正在寻找的内容。将它放在样式表的顶部,使用空格分隔的元素列表,您希望保留的空格逐字保存 - 但是只有在使用xsl:strip-space
时才需要它,这看起来像你没有