Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The entity "copy" was referenced, but not declared in jspx

Tags:

jspx

I want to use copyright symbol in jspx, but it is not allowing me to use © . It is throwing me an error.

The entity "copy" was referenced, but not declared.

I googled it out and found that i need to modify escapeMode . But I do not know where I should change it.

Or anyone has the solution, please let me know.

like image 981
pankaj Avatar asked May 16 '13 13:05

pankaj


1 Answers

You may need to find the section of your template and add the entity declaration.

Here's an example with a few common entities:

<!DOCTYPE html [
<!ENTITY nbsp "&#160;">  
<!ENTITY copy "&#169;"> 
<!ENTITY bull "&#8226;"> ]>

Here is a list of the entities in HTML4

like image 187
PHY6 Avatar answered Oct 10 '22 22:10

PHY6