The command line output option in HTML tidy does not work. I run "tidy" in a command line window. The code runs and outputs formatted HTML code to the screen then, stops (hangs) at the line and does not go further.
tidy infile -o outfile
Output:
</div>
</body>
</html>
the only way I can get an output file is tidy infile > outfile
any ideas?
contrary to the documentation, the correct sequence of commands is
tidy -o outfile infileall command switches must PRECEDE the infile name.