4.2 Line Breaks

<..br into BREAK..>
 <script element="br" >
   <set name="br" >
      <.open xslt script.>
      <.append br with BREAK.>
      <.close xslt script.>
   </set>
   <xslt name="." xml="." xsl="br" />
 </script>
-_-_-

<..append br with BREAK..>
 <xsl:template match="br" >
    <xsl:copy>
        <xsl:apply-templates select="@*" />
    </xsl:copy>
    <BREAK SIZE="small"/>
 </xsl:template>
-_-_-

���