Entities
Hi,
i'm trying to write this line
<a href="SOMEVALUE">Atrás</a>
And i have this code
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="@value"/>
</xsl:attribute>
Atrás
</xsl:element>
Everything works fine, except Atrás
I get an
[Fatal Error] utils.xslt:21:34: The entity "aacute" was referenced, but not declared.
ERROR: 'The entity "aacute" was referenced, but not declared.'
I also had this error in my JSP file, i fixed it with
<!DOCTYPE HTML PUBLIC "entidades" "entidades.dtd">
where entidades.dtd is where all the entities are defined
How can i do this in a XSLT file? So that all the entities are recognizes.
thank you
|