私は次のようなxmlを持っています:
<item id="1">
        <items>
            <item id="2">Text2</item>
            <item id="3">Text3</item>
        </items>Text1
</item>
<item id="1">('Text1') の 
テキストを返すには? <xsl:value-of select="item/text()"/>何も返しません。
私のXSLTは次のとおりです。
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="w3.org/1999/XSL/Transform">
  <xsl:template match="/">
    <html>
      <body>
         <xsl:apply-templates select="item"/>
     </body>
    </html>
  </xsl:template>
  <xsl:template match="item">
     <xsl:value-of select="text()"/>
  </xsl:template>
</xsl:stylesheet>
編集をコミットするために他に何を入力すればよいかわかりません