I don't understand what rules you propose that HTML::Parser should follow to parse this kind of
bogus HTML. You think it should treat "/**/" and "/" as whitespace?
From nikolas@cpan.org on 2010-06-01 07:13:54
:
Here 3 regular expressions applied to the entrance text correct this
problems:
s{(/\*)}{ $1}g;
s{(\*/)}{$1 }g;
s{(<[^/\s<>]+)/}{$1 /}g;
Probably you will find more correct architectural decision.
Migrated from rt.cpan.org#55629 (status was 'open')
Requestors:
From nikolas@cpan.org on 2010-03-16 15:09:51 :
From nikolas@cpan.org on 2010-03-18 13:51:31 :
From gaas@cpan.org on 2010-04-04 20:38:08 :
From nikolas@cpan.org on 2010-06-01 07:13:54 :