Re: Urgent: A couple of Tidy questions

* Julian Voelcker wrote:
>I have cobbled together a batch file as follows:-
>
>FOR /R %%a IN (*.htm) do c:\tools\tidy\tidy.exe -config c:
>\tools\tidy\InitialCleanUp.tidy -m "%%a" -f errs.txt
>
>This cleans one document and then seems to stop.
>
>Any ideas?

Try: FOR /R %%a IN (*.htm) do call tidy
                              ^^^^

Received on Wednesday, 19 March 2003 10:49:18 UTC