#!/bin/sh
# $Id: tidy-xml,v 1.1 2009/12/30 23:00:25 friedman Exp $

exec tidy \
       --quiet			yes 	\
       --gnu-emacs		yes 	\
       --keep-time		no 	\
       --write-back		no 	\
       					\
       --input-xml		yes 	\
       --output-xml		yes	\
       --add-xml-decl		yes	\
				        \
       --indent			yes 	\
       --indent-attributes	yes 	\
       --indent-spaces		4 	\
       --sort-attributes	alpha	\
					\
       --wrap			160 	\
       --wrap-attributes	no 	\
       --wrap-script-literals	no 	\
       					\
       --vertical-space		yes 	\
       ${1+"$@"}
