#238 closed defect (fixed)
tidy HTML generation
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | lowest | Milestone: | |
Component: | Book | Version: | CVS |
Severity: | normal | Keywords: | |
Cc: |
Description
This is a program to tidy up the HTML code we generate.
We can use it with something like: for i in html html/chapter* html/prefix html/appendix* do cd SOMEWHERE/$i for j in *.html do tidy $j > $j.backup mv $j.backup $j done done
or some much cleverer solution which one of you will come up with :-)
Change History (4)
comment:1 by , 23 years ago
comment:2 by , 22 years ago
Priority: | low → lowest |
---|---|
Severity: | enhancement → normal |
comment:3 by , 22 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
This has been taken care of, has it not? Closing this bug.
Note:
See TracTickets
for help on using tickets.
if I'd been thinking (or read the man page properly), I'd have said use:
tidy -m $i
which modifies the file in place instead of using the backup thingy...