Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^2: clean html tags

by wfsp (Abbot)
on Jan 25, 2007 at 20:01 UTC ( [id://596611]=note: print w/replies, xml ) Need Help??


in reply to Re: clean html tags
in thread clean html tags

...you might consider the standalone version of Tidy for html...
I agree. It's very nifty indeed, easy to use and highly configurable.

Something as simple as:

my $in = 'bad.html'; my $out = 'tidied.html'; my $err = 'tidy.err'; my $cnf = 'tidy.cnf'; system( 'tidy.exe', '-asxml', -config => $cnf, -file => $err, -output => $out, $in, );
can be easily adapted to process a list or even a local copy of a web site. The config file can be tweaked to be severe or lenient to taste.

You can easily interrogate all the error files to get a good picture of how bad the html is (and there is a lot of it about!).

Again, I agree. Why bother to go to a lot of trouble when there is a very clever bit of kit available.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://596611]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-20 00:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found