私のデータがデータベースから正しい形式でエクスポートされているとき。それを XSLT スタイル シートに入れると、すべてが一直線に並べられます。これを修正する方法はありますか?ご協力ありがとうございました。
スタイルシート
    <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" xmlns:aras="http://www.aras.com">
      <xsl:output method="html" omit-xml-declaration="yes" standalone="yes" indent="yes" cdata-section-elements="script msxsl:script"></xsl:output>
      <xsl:template match="Item[@type='Order']">
        <html>
          <body>
    <!-- Implementation Notes -->
            <table class="row">
              <tr>
                <td class="section" width="100%">
                  <b>Implementation Notes</b>
                </td>
          </tr>
            <tr>
                <td class="fieldValue">
                  <xsl:value-of select="implementation_notes"></xsl:value-of>
                </td>
            </tr>
         </table>
            <table class="row" height="10">
              <tr>
                <td></td>
              </tr>
            </table>
       </body>
      </html>
     </xsl:template>
     </xsl:stylesheet>
データ
    <?xml version="1.0" encoding="utf-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
      <SOAP-ENV:Body>
        <Result>
          <Item type="Order">
            <implementation_notes>New Order.
    1. Instructions A
    1.1 Instructions A.1
    2. Instructions B
    2.1 Instructions B.1
    3. Instructions C
    3.1 Instructions C.1
    </implementation_notes>
         </Item>
        </Result>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>