How can I insert
Into an XSLT stylesheet, I keep getting this error:
XML Parsing Error: undefined entity
Essentially I want a non breaking space character in the XSLT Template.
|
How can I insert
Into an XSLT stylesheet, I keep getting this error: XML Parsing Error: undefined entity Essentially I want a non breaking space character in the XSLT Template. |
|||
|
|
|
Try using the entity More details on why |
|||||||||||||
|
|
One can also do this :
|
|||
|
|
|
Use this
edit: Downvoters should probably validate that this works first (it does, and is the most general solution to the problem.) |
|||||||||||||||||||||
|
|
You might want to add the definition for this entity in the beginning of the file (below xml declaration):
Also you can add more entities such as Ntilde, Aacute, etc. |
|||
|
|
|
In addition to victor hugo's answer it is possible to get all known character references legal in an XSLT file, like this:
There is also certain difference in the result of this approach as compared to And when including all character references, it may be wise to use a local entity resolver to keep the XSLT engine from fetching character entity definitions from the Internet. JAXP or explicit Xalan-J users may need a patch for Xalan-J to use the resolver correctly. See my blog XSLT, entities, Java, Xalan... for patch download and comments. |
|||
|
|
|
I was trying to display borders on an empty cell in an HTML table. My old trick of using non-breaking space in empty cells was not working from xslt. I used line break with the same effect. A little off topic, but it may solve a root problem for somebody asking an overly specific question rather than explaining the end goal.
|
||||
|
|