Re: [xsl] nbsp fails transformation

Subject: Re: [xsl] nbsp fails transformation
From: "Christopher R. Maden" <crism@xxxxxxxxx>
Date: Wed, 10 Aug 2011 02:39:04 -0400
On 08/10/2011 02:19 AM, Szabo, Patrick (LNG-VIE) wrote:
> SXXP0003: Error reported by XML parser: The entity "nbsp" was
> referenced, but not declared.
> 
> Now since i can't even transform those files i can't throw those
> entities out.
> 
> How do i handle this  !?

s/&nbsp;/&#xa0;/g

Or

<!DOCTYPE root_element_type [
<!ENTITY nbsp "&#xa0;">
]>

programatically prepended to the XML files.

~Chris
-- 
Chris Maden, text nerd  <URL: http://crism.maden.org/ >
Those who learn from history are doomed to become cynics.

Current Thread