Change the default Tidy options so it doesn't indent, and so it wraps
the lines at column 90, instead of the default 68. This makes the resulting HTML considerably smaller. The change also band-aid a problem where Tidy wrap lines which shouldn't have been wrapped. This can cause extra spaces in the resulting HTML, e.g. resulting in "( audio/lame)" instead of "(audio/lame)". Discussed on: -doc
This commit is contained in:
parent
69be6f5e2c
commit
4c6ebf3b41
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=18164
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ LATEX?= ${PREFIX}/bin/latex
|
|||
PDFTEX?= ${PREFIX}/bin/pdftex
|
||||
GROFF?= groff
|
||||
TIDY?= ${PREFIX}/bin/tidy
|
||||
TIDYOPTS?= -i -m -raw -preserve -f /dev/null -asxml ${TIDYFLAGS}
|
||||
TIDYOPTS?= -wrap 90 -m -raw -preserve -f /dev/null -asxml ${TIDYFLAGS}
|
||||
HTML2TXT?= ${PREFIX}/bin/links
|
||||
HTML2TXTOPTS?= -dump ${HTML2TXTFLAGS}
|
||||
HTML2PDB?= ${PREFIX}/bin/iSiloBSD
|
||||
|
|
Loading…
Reference in a new issue