Re: Missing blank in a text node after validation using JTIDY

Another way to handle the   issue, of course, is
(get HTML page) | tidy ${options} | sed -e 's/ /\ /g'
where the 'sed' command replaces   by  .  This hack
can be used to replace any number of different entity references.
Perl or Python could also be used.

Received on Sunday, 3 March 2002 21:00:55 UTC