<!-- Outreach Plugin for WordPress, version 2, "Wrong Way 1" -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:is="http://libertini.net/libertus/outreach">

<xsl:template match="is:uri">
  <xsl:copy>
    <xsl:apply-templates select="@*"/>
		<xsl:element name="a">
			<xsl:attribute name="href"><xsl:value-of select="@cite"/></xsl:attribute>
			<xsl:value-of select="."/>
		</xsl:element>
	</xsl:copy>
</xsl:template>

<!-- identity transformation, copy all input nodes to output -->
<xsl:template match="@*|node()">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>

</xsl:stylesheet>
