Re: Urgent: A couple of Tidy questions

* Julian Voelcker wrote:
>1. How can I use the Win32 version to clean a batch of files in a 
>directory and sub directories, I cannot find any info on the command 
>line instructions anywhere.

  % for /R %a in (*.html) do tidy "%a"

Type `for /?` on the command line for more information. Tidy doesn't
support this at the moment.

>2. Is there a tidy setting to strip out blank lines?  If there isn't 
>one what do I need to do to put this on the wish list?

http://sf.net/projects/tidy => Tracker => Feature Tracker => Submit new

I'd recommend using a post processor, e.g. Perl like

  % tidy example.html | perl -ne "print if /\S/"

Received on Tuesday, 18 March 2003 20:57:51 UTC