2 Line Break Elements

Avoid short versions <br />.

<..non short tag br elements..>
 <script element="br" >
   <set name="br" >
     <![CDATA[
        <xsl:stylesheet version="1.0"
           xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
        >
           <xsl:output omit-xml-declaration = "yes" />
           <xsl:template match="br" >
             <xsl:copy>
               <xsl:apply-templates select="@*" />
               <xsl:comment><.comment.></xsl:comment>
             </xsl:copy>
           </xsl:template>
           <xsl:template match="*|@*|text()|comment()" >
             <xsl:copy>
               <xsl:apply-templates select="*|@*|text()|comment()" />
             </xsl:copy>
           </xsl:template>
        </xsl:stylesheet>
     ]]>
   </set>
   <xslt name="." xml="." xsl="br" />
 </script>
-_-_-