xmltotext.xslt 298 B

12345678
  1. <?xml version="1.0"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:output method="text" standalone="no" indent="yes" encoding="utf-8" />
  4. <xsl:template match="text()|@*">
  5. <xsl:value-of select="."/><xsl:text> </xsl:text>
  6. </xsl:template>
  7. </xsl:stylesheet>