I am trying to set an a href that is both a link to and has the text for a link through an XSLT transformation. Here's what it looks like so far.
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="actionUrl"/>
</xsl:attribute>
<xsl:text><xsl:value-of select="actionUrl"/></xsl:text>
</xsl:element>
The problem is that it says "xsl:value-of cannot be a child of the xsl:text element". Any ideas?