ZVON > References > XSLT Reference
Example 43:2: All | XML | >> XSLT << | Output |

XSLT


     <xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
          <xsl:output method = "xml" indent = "yes" />

          <xsl:template match = "/" >
               <AAA >
                    <xsl:text >
      #################
          </xsl:text>
                    <xsl:text disable-output-escaping = "no" >&lt;SSS/&gt;</xsl:text>
                    <xsl:text >
            #################
          </xsl:text>
                    <xsl:text disable-output-escaping = "yes" >&lt;SSS/&gt;</xsl:text>
                    <xsl:text >
            #################
          </xsl:text>
                    <xsl:value-of disable-output-escaping = "no" select = "string('&lt;SSS/&gt;')" />
                    <xsl:text >
            #################
          </xsl:text>
                    <xsl:value-of disable-output-escaping = "yes" select = "string('&lt;SSS/&gt;')" />
                    <xsl:text >
            #################
          </xsl:text>
               </AAA>
          </xsl:template>
     </xsl:stylesheet>