【发布时间】:2023-03-17 16:10:01
【问题描述】:
我有如下给出的 XML 代码,而 XSLT 1.0 代码没有处理 正确。
<customnote>
<sketchpads title="PT Follow up" doctypeid="1025" doctypename="PHYSICAL THERAPY NOTES">
<sketchpad seq="0" canvasheight="500px" expandcount="0">
<text data="40/54

S: States neck is stiff and tight today.

O: Manual therapy 30 min.
STM to B CS paraspinals PA to C4-C7 gr.I-II.
B UT and levator stretches 2x30" each.

A: increased tightness to B CS paraspinals L>R.

P: Decrease pain and in AROM.

PT: Yolanta Boese
 "/>
</sketchpad>
</sketchpads>
</customnote>
而我的 XSLT 1.0 代码是
<xsl:value-of select="customnote/sketchpads/sketchpad/text/@data" disable-output-escaping="yes"/>
为每个&#xA; 实例获取新行的 XSLT 代码应该是什么
【问题讨论】: