Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #8722
| Date | 2011-10-11 19:04 -0400 |
|---|---|
| From | Arne Vajhøj <arne@vajhoej.dk> |
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: javax.xml.transform.Transformer and HTML entities |
| References | <4e94c9cd$0$29390$426a74cc@news.free.fr> |
| Message-ID | <4e94cb67$0$284$14726298@news.sunsite.dk> (permalink) |
| Organization | SunSITE.dk - Supporting Open source |
On 10/11/2011 6:57 PM, Aéris wrote:
> I use Transformer to create a HTML file from an DOM Document.
> But in generated HTML, all «& » on text nodes in the document, which
> are parts of already escaped HTML entities like « », are
> re-escaped by Transformer.
>
> See this sample : http://pastebin.com/LfGpWMai
> Instead of expected
> <div>—</div>
> I get
> <div>&mdash;</div>
>
> I search on doc and Google, but nothing found to disable escaping.
> Is there anybody to help me ?
The code does exactly what it is supposed to do.
document.createTextNode("—")
creates a text node with those 7 characters.
Try:
document.createTextNode("\u2014")
Arne
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar
javax.xml.transform.Transformer and HTML entities Aéris <aeris@imirhil.fr> - 2011-10-12 00:57 +0200
Re: javax.xml.transform.Transformer and HTML entities Arne Vajhøj <arne@vajhoej.dk> - 2011-10-11 19:04 -0400
Re: javax.xml.transform.Transformer and HTML entities Jeff Higgins <jeff@invalid.invalid> - 2011-10-11 19:15 -0400
Re: javax.xml.transform.Transformer and HTML entities markspace <-@.> - 2011-10-11 17:58 -0700
Re: javax.xml.transform.Transformer and HTML entities Arne Vajhøj <arne@vajhoej.dk> - 2011-10-11 21:14 -0400
csiph-web