<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">

  <!-- blogTEI - Francois Lachance - TEIblog-->

  <!-- this is a template to include in a XSLT file -->
  <!-- it targets markup of title elements -->
  
  <!-- see TEI Guidelines for more on the content model -->
  <!-- see XSLT Recomendation for more on templates -->

  
  <xsl:template match="title">
    <xsl:apply-templates/>
  </xsl:template>


</xsl:stylesheet>
