<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
                xmlns:tei="http://www.tei-c.org/ns/1.0" 
                xmlns:ct="http://www.comhartaighde.com/ns/1.0" 
                exclude-result-prefixes="tei ct"
                version="1.0">

<xsl:template match="tei:title">
    <span class="workTitle"><xsl:value-of select="."/></span>
</xsl:template>
    
<xsl:template match="tei:emph">
    <span class="italicized"><xsl:value-of select="."/></span>
</xsl:template>

<xsl:template match="tei:hi[@rend='smallcaps']">
    <span class="smallCaps"><xsl:value-of select="."/></span>
</xsl:template>
    
<xsl:template match="tei:foreign">
    <span class="italicized"><xsl:value-of select="."/></span>
</xsl:template>
    
<xsl:template match="ct:amp">
    <xsl:text>&amp;</xsl:text>
</xsl:template>

</xsl:stylesheet>