P
Phlip
Rubies:
This fails on the second line...
REXML:
ocument.new('<b>&</b>')
REXML:
ocument.new('<b> </b>')
....with Undeclared entity ' '
If I make that real XHTML, with a DOCTYPE and a html xmlns="...xhtml", it
still fails.
I fixed the itself by adding [<!ENTITY nbsp " ">] to the DOCTYPE.
This seems extremely tacky, because it disregards all the other fun stuff in
XHTML.
(I suspect REXML with 1.8 did not have this issue.)
If I should call Entity.new('nbsp', ' '), I don't understand how to .add
that before the call to .new, and I don't understand how to easily add new
HTML content to a preexisting Document object.
Any tips?
This fails on the second line...
REXML:
REXML:
....with Undeclared entity ' '
If I make that real XHTML, with a DOCTYPE and a html xmlns="...xhtml", it
still fails.
I fixed the itself by adding [<!ENTITY nbsp " ">] to the DOCTYPE.
This seems extremely tacky, because it disregards all the other fun stuff in
XHTML.
(I suspect REXML with 1.8 did not have this issue.)
If I should call Entity.new('nbsp', ' '), I don't understand how to .add
that before the call to .new, and I don't understand how to easily add new
HTML content to a preexisting Document object.
Any tips?