changeset 979:24535e8e207e

Change HTML TIDY's max line length to fix a stupid problem with certain "must be typed exactly as shown" BatMUD settings in the manual and additionally introduced hidden whitespaces.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 31 Mar 2009 14:56:07 +0000
parents dc8ee5ec3c66
children 9d3182edd64d
files docs/build-docs.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/docs/build-docs.sh	Tue Mar 31 14:25:24 2009 +0000
+++ b/docs/build-docs.sh	Tue Mar 31 14:56:07 2009 +0000
@@ -105,7 +105,7 @@
 	echo "** Checking for HTML Tidy ..."
 	if test -n "$TIDY" && test -x "$TIDY"; then
 		echo "** Found, cleaning up the mess by DocBook .."
-		if $TIDY -q -w 120 -utf8 -asxhtml -i -m $HTMLPATH/*.html "$HTMLFILE"; then
+		if $TIDY -q -w 512 -utf8 -asxhtml -i -m $HTMLPATH/*.html "$HTMLFILE"; then
 			echo "** Tidying process successful."
 		fi
 	else