next update of LICENCE

Cleaned up some unused stuff in 3rdparty, to simplify licensing (jquery.js)
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gmake/Makefile b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gmake/Makefile
deleted file mode 100644
index 6d79840..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gmake/Makefile
+++ /dev/null
@@ -1,231 +0,0 @@
-# Makefile - for tidy - HTML parser and pretty printer
-#
-#  Copyright (c) 1998-2008 World Wide Web Consortium
-#  (Massachusetts Institute of Technology, European Research 
-#  Consortium for Informatics and Mathematics, Keio University).
-#  All Rights Reserved.
-#
-#  Contributing Author(s):
-#
-#     Dave Raggett <dsr@w3.org>
-#     Terry Teague <terry_teague@users.sourceforge.net>
-#     Pradeep Padala<ppadala@users.sourceforge.net>
-#
-#  The contributing author(s) would like to thank all those who
-#  helped with testing, bug fixes, and patience.  This wouldn't
-#  have been possible without all of you.
-#
-#  COPYRIGHT NOTICE:
-#
-#  This software and documentation is provided "as is," and
-#  the copyright holders and contributing author(s) make no
-#  representations or warranties, express or implied, including
-#  but not limited to, warranties of merchantability or fitness
-#  for any particular purpose or that the use of the software or
-#  documentation will not infringe any third party patents,
-#  copyrights, trademarks or other rights. 
-#
-#  The copyright holders and contributing author(s) will not be
-#  liable for any direct, indirect, special or consequential damages
-#  arising out of any use of the software or documentation, even if
-#  advised of the possibility of such damage.
-#
-#  Permission is hereby granted to use, copy, modify, and distribute
-#  this source code, or portions hereof, documentation and executables,
-#  for any purpose, without fee, subject to the following restrictions:
-#
-#  1. The origin of this source code must not be misrepresented.
-#  2. Altered versions must be plainly marked as such and must
-#     not be misrepresented as being the original source.
-#  3. This Copyright notice may not be removed or altered from any
-#     source or altered source distribution.
-# 
-#  The copyright holders and contributing author(s) specifically
-#  permit, without fee, and encourage the use of this source code
-#  as a component for supporting the Hypertext Markup Language in
-#  commercial products. If you use this source code in a product,
-#  acknowledgment is not required but would be appreciated.
-#
-
-SHELL=/bin/sh
-
-PROJECT=tidy
-
-# Installation variables.  Spaces OK, only dir create and file copy operations.
-runinst_prefix=/usr/local
-devinst_prefix=/usr/local
-
-bininst = ${runinst_prefix}/bin
-libinst = ${devinst_prefix}/lib
-incinst = ${devinst_prefix}/include/$(PROJECT)
-maninst = ${devinst_prefix}/man
-
-# Internal variables. - No spaces allowed: libtool chokes on spaces in directory names.
-TOPDIR = ../..
-INCDIR = ${TOPDIR}/include
-APPDIR = ${TOPDIR}/console
-SRCDIR = ${TOPDIR}/src
-OBJDIR = ./obj
-LIBDIR = ${TOPDIR}/lib
-BINDIR = ${TOPDIR}/bin
-DOCDIR = ${TOPDIR}/htmldoc
-
-# Note about shared library and exported symbols:
-# With gcc, one can control the exported symbols by either using 
-# "-fvisibility=hidden -DTIDY_EXPORT='__attribute__((visibility("default")))'"
-# or using a linker map (see GNU ld "--version-script").
-
-# Lookup based on hash table can be disabled with 
-# "-DELEMENT_HASH_LOOKUP=0 -DATTRIBUTE_HASH_LOOKUP=0"
-
-# Memory mapped i/o can be disabled with -DSUPPORT_POSIX_MAPPED_FILES=0
-#
-
-# CFLAGS etc..
-# For optimised builds, flags such as "-O2" should be added and -D_DEBUG=1
-# disabled.
-CC= gcc
-CFLAGS= -g -pedantic -Wall -I $(INCDIR)
-# flags only supported with gcc 3.x
-CFLAGS += -Wunused-parameter
-
-OTHERCFLAGS=
-OTHERCFLAGS+= -D_DEBUG=1 -D_MSC_VER=1400
-# OTHERCFLAGS+= -fvisibility=hidden -DTIDY_EXPORT='__attribute__((visibility("default")))'
-ifdef SUPPORT_UTF16_ENCODINGS
-CFLAGS += -DSUPPORT_UTF16_ENCODINGS=$(SUPPORT_UTF16_ENCODINGS)
-endif
-ifdef SUPPORT_ASIAN_ENCODINGS
-CFLAGS += -DSUPPORT_ASIAN_ENCODINGS=$(SUPPORT_ASIAN_ENCODINGS)
-endif
-ifdef SUPPORT_ACCESSIBILITY_CHECKS
-CFLAGS += -DSUPPORT_ACCESSIBILITY_CHECKS=$(SUPPORT_ACCESSIBILITY_CHECKS)
-endif
-
-DEBUGFLAGS=-g
-ifdef DMALLOC
-DEBUGFLAGS += -DDMALLOC
-endif
-
-LIBS=
-DEBUGLIBS=-ldmalloc
-
-# Tidy lib related variables
-TIDY_MAJOR = 1
-TIDY_MINOR = 0
-
-# This will come from autoconf again
-LIBPREFIX = lib
-LIBSUFFIX = .a
-OBJSUF = .o
-
-LIBRARY = $(LIBDIR)/$(LIBPREFIX)$(PROJECT)$(LIBSUFFIX)
-AR=ar -r
-
-XSLTPROC = xsltproc
-
-EXES = $(BINDIR)/$(PROJECT) $(BINDIR)/tab2space
-
-DOCS = $(DOCDIR)/quickref.html $(DOCDIR)/tidy.1
-
-CONFIGXML = $(DOCDIR)/tidy-config.xml
-HELPXML = $(DOCDIR)/tidy-help.xml
-
-OBJFILES=\
-        $(OBJDIR)/access$(OBJSUF)     $(OBJDIR)/attrs$(OBJSUF)      $(OBJDIR)/istack$(OBJSUF) \
-        $(OBJDIR)/parser$(OBJSUF)     $(OBJDIR)/tags$(OBJSUF)       $(OBJDIR)/entities$(OBJSUF) \
-        $(OBJDIR)/lexer$(OBJSUF)      $(OBJDIR)/pprint$(OBJSUF)     $(OBJDIR)/clean$(OBJSUF) \
-        $(OBJDIR)/localize$(OBJSUF)   $(OBJDIR)/config$(OBJSUF)     $(OBJDIR)/alloc$(OBJSUF) \
-        $(OBJDIR)/attrask$(OBJSUF)    $(OBJDIR)/attrdict$(OBJSUF)   $(OBJDIR)/attrget$(OBJSUF) \
-        $(OBJDIR)/buffio$(OBJSUF)     $(OBJDIR)/fileio$(OBJSUF)     $(OBJDIR)/streamio$(OBJSUF) \
-        $(OBJDIR)/tagask$(OBJSUF)     $(OBJDIR)/tmbstr$(OBJSUF)     $(OBJDIR)/utf8$(OBJSUF) \
-        $(OBJDIR)/tidylib$(OBJSUF)    $(OBJDIR)/mappedio$(OBJSUF)   $(OBJDIR)/gdoc$(OBJSUF)
-
-CFILES= \
-        $(SRCDIR)/access.c       $(SRCDIR)/attrs.c        $(SRCDIR)/istack.c \
-        $(SRCDIR)/parser.c       $(SRCDIR)/tags.c         $(SRCDIR)/entities.c \
-        $(SRCDIR)/lexer.c        $(SRCDIR)/pprint.c       $(SRCDIR)/clean.c \
-        $(SRCDIR)/localize.c     $(SRCDIR)/config.c       $(SRCDIR)/alloc.c \
-        $(SRCDIR)/attrask.c      $(SRCDIR)/attrdict.c     $(SRCDIR)/attrget.c \
-        $(SRCDIR)/buffio.c       $(SRCDIR)/fileio.c       $(SRCDIR)/streamio.c \
-        $(SRCDIR)/tagask.c       $(SRCDIR)/tmbstr.c       $(SRCDIR)/utf8.c \
-        $(SRCDIR)/tidylib.c      $(SRCDIR)/mappedio.c     $(SRCDIR)/gdoc.c
-
-HFILES= $(INCDIR)/platform.h     $(INCDIR)/tidy.h         $(INCDIR)/tidyenum.h \
-        $(INCDIR)/buffio.h
-
-LIBHFILES= \
-        $(SRCDIR)/access.h       $(SRCDIR)/attrs.h        $(SRCDIR)/attrdict.h \
-        $(SRCDIR)/clean.h        $(SRCDIR)/config.h       $(SRCDIR)/entities.h \
-        $(SRCDIR)/fileio.h       $(SRCDIR)/forward.h      $(SRCDIR)/lexer.h \
-        $(SRCDIR)/mappedio.h     $(SRCDIR)/message.h      $(SRCDIR)/parser.h \
-        $(SRCDIR)/pprint.h       $(SRCDIR)/streamio.h     $(SRCDIR)/tags.h \
-        $(SRCDIR)/tmbstr.h       $(SRCDIR)/utf8.h         $(SRCDIR)/tidy-int.h \
-        $(SRCDIR)/gdoc.h         $(SRCDIR)/version.h
-
-
-
-all:    $(LIBRARY) $(EXES)
-
-doc:    $(DOCS)
-
-$(LIBRARY): $(OBJFILES)
-	if [ ! -d $(LIBDIR) ]; then mkdir $(LIBDIR); fi
-	$(AR) $@ $(OBJFILES)
-ifdef RANLIB
-	$(RANLIB) $@
-endif
-
-$(OBJDIR)/%$(OBJSUF):	$(SRCDIR)/%.c $(HFILES) $(LIBHFILES) Makefile
-	if [ ! -d $(OBJDIR) ]; then mkdir $(OBJDIR); fi
-	$(CC) $(CFLAGS) $(OTHERCFLAGS) -o $@ -c $<
-
-$(BINDIR)/$(PROJECT):	$(APPDIR)/tidy.c $(HFILES) $(LIBRARY)
-	if [ ! -d $(BINDIR) ]; then mkdir $(BINDIR); fi
-	$(CC) $(CFLAGS) $(OTHERCFLAGS) -o $@ $(APPDIR)/tidy.c -I$(INCDIR) $(LIBRARY)
-
-$(BINDIR)/tab2space: $(APPDIR)/tab2space.c
-	if [ ! -d $(BINDIR) ]; then mkdir $(BINDIR); fi
-	$(CC) $(CFLAGS) $(OTHERCFLAGS) -o $@ $(APPDIR)/tab2space.c $(LIBS)
-
-$(HELPXML): $(BINDIR)/$(PROJECT)
-	$(BINDIR)/$(PROJECT) -xml-help > $@
-
-$(CONFIGXML): $(BINDIR)/$(PROJECT)
-	$(BINDIR)/$(PROJECT) -xml-config > $@
-
-$(DOCDIR)/quickref.html: $(DOCDIR)/quickref-html.xsl $(CONFIGXML)
-	$(XSLTPROC) -o $@ $(DOCDIR)/quickref-html.xsl $(CONFIGXML)
-
-$(DOCDIR)/tidy.1: $(DOCDIR)/tidy1.xsl $(HELPXML) $(CONFIGXML)
-	$(XSLTPROC) -o $@ $(DOCDIR)/tidy1.xsl $(HELPXML)
-
-debug:
-	@$(MAKE) CFLAGS='$(CFLAGS) $(DEBUGFLAGS)' LIBS='$(LIBS) $(DEBUGLIBS)' all
-
-clean:
-	rm -f $(OBJFILES) $(EXES) $(LIBRARY) $(DOCS) $(HELPXML) $(CONFIGXML) $(OBJDIR)/*.lo
-	rm -rf $(BINDIR)/tidy.dSYM $(BINDIR)/tab2space.dSYM
-	if [ -d $(OBJDIR)/.libs ]; then rmdir $(OBJDIR)/.libs; fi
-	if [ -d $(LIBDIR)/.libs ]; then rmdir $(LIBDIR)/.libs; fi
-	if [ "$(OBJDIR)" != "$(TOPDIR)" -a -d $(OBJDIR) ]; then rmdir $(OBJDIR); fi
-	if [ "$(LIBDIR)" != "$(TOPDIR)" -a -d $(LIBDIR) ]; then rmdir $(LIBDIR); fi
-	if [ "$(BINDIR)" != "$(TOPDIR)" -a -d $(BINDIR) ]; then rmdir $(BINDIR); fi
-
-installhdrs: $(HFILES)
-	if [ ! -d "$(incinst)" ]; then mkdir -p "$(incinst)"; fi
-	cp -f $(HFILES) "$(incinst)/"
-
-installib: $(LIBRARY)
-	if [ ! -d "$(libinst)" ]; then mkdir -p "$(libinst)"; fi
-	cp -f $(LIBRARY) "$(libinst)/"
-
-installexes: $(EXES)
-	if [ ! -d "$(bininst)" ]; then mkdir -p "$(bininst)"; fi
-	cp -f $(EXES) "$(bininst)/"
-
-installmanpage: $(DOCDIR)/tidy.1
-	if [ ! -d "$(maninst)/man1" ]; then mkdir -p "$(maninst)/man1"; fi;
-	cp -f $(DOCDIR)/tidy.1 "$(maninst)/man1/tidy.1";
-
-install: installhdrs installib installexes installmanpage
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gmake/readme.txt b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gmake/readme.txt
deleted file mode 100644
index 7e83cb3..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gmake/readme.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-This Makefile works on most Unix platforms.  Although, by default, it
-runs gcc, by setting the CC macro, it runs with many C compilers.
-
-You can override the default build options by setting environment 
-variables of the same name as the corresponding macro: DMALLOC,
-SUPPORT_ACCESSIBILITY_CHECKS, SUPPORT_UTF16_ENCODINGS and
-SUPPORT_ASIAN_ENCODINGS.  
-
-$ DMALLOC=1 gmake
-
-Note this Makefile will only run with gmake.  But you should be able
-to easily locate a pre-built executable for your platform.
-
-To customize the location of output files or install locations, just
-edit the Makefile.  There are variable definitions for just about 
-everything, so you shouldn't have to alter the build rules.
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/Makefile.am b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/Makefile.am
deleted file mode 100644
index 6dfa33e..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/Makefile.am
+++ /dev/null
@@ -1,57 +0,0 @@
-# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
-#
-#  Copyright (c) 1998-2003 World Wide Web Consortium
-#  (Massachusetts Institute of Technology, European Research 
-#  Consortium for Informatics and Mathematics, Keio University).
-#  All Rights Reserved.
-#
-#  Contributing Author(s):
-#
-#     Dave Raggett <dsr@w3.org>
-#     Terry Teague <terry_teague@users.sourceforge.net>
-#     Pradeep Padala<ppadala@users.sourceforge.net>
-#
-#  The contributing author(s) would like to thank all those who
-#  helped with testing, bug fixes, and patience.  This wouldn't
-#  have been possible without all of you.
-#
-#  COPYRIGHT NOTICE:
-#
-#  This software and documentation is provided "as is," and
-#  the copyright holders and contributing author(s) make no
-#  representations or warranties, express or implied, including
-#  but not limited to, warranties of merchantability or fitness
-#  for any particular purpose or that the use of the software or
-#  documentation will not infringe any third party patents,
-#  copyrights, trademarks or other rights. 
-#
-#  The copyright holders and contributing author(s) will not be
-#  liable for any direct, indirect, special or consequential damages
-#  arising out of any use of the software or documentation, even if
-#  advised of the possibility of such damage.
-#
-#  Permission is hereby granted to use, copy, modify, and distribute
-#  this source code, or portions hereof, documentation and executables,
-#  for any purpose, without fee, subject to the following restrictions:
-#
-#  1. The origin of this source code must not be misrepresented.
-#  2. Altered versions must be plainly marked as such and must
-#     not be misrepresented as being the original source.
-#  3. This Copyright notice may not be removed or altered from any
-#     source or altered source distribution.
-# 
-#  The copyright holders and contributing author(s) specifically
-#  permit, without fee, and encourage the use of this source code
-#  as a component for supporting the Hypertext Markup Language in
-#  commercial products. If you use this source code in a product,
-#  acknowledgment is not required but would be appreciated.
-#
-
-SUBDIRS = src console include
-
-#TODO: Pull man page from htmldoc
-#installmanpage:
-#	if [ -f "$(TOPDIR)/htmldoc/man_page.txt" ] ; then \
-#    	if [ ! -d "$(maninst)/man1" ]; then mkdir -p "$(maninst)/man1"; fi; \
-#    	cp -f $(TOPDIR)/htmldoc/man_page.txt "$(maninst)/man1/tidy.1"; \
-#	fi
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/configure.in b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/configure.in
deleted file mode 100644
index b2e5065..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/configure.in
+++ /dev/null
@@ -1,127 +0,0 @@
-# configure.in - HTML TidyLib GNU autoconf input file
-#
-# Copyright (c) 2003-2004 World Wide Web Consortium
-# (Massachusetts Institute of Technology, European Research 
-# Consortium for Informatics and Mathematics, Keio University).
-# All Rights Reserved.
-#
-
-AC_INIT([include/tidy.h])
-
-# Making releases:
-# 
-#   TIDY_MICRO_VERSION += 1;
-#   TIDY_INTERFACE_AGE += 1;
-#   TIDY_BINARY_AGE += 1;
-# 
-# if any functions have been added, set TIDY_INTERFACE_AGE to 0.
-# if backwards compatibility has been broken,
-# set TIDY_BINARY_AGE and TIDY_INTERFACE_AGE to 0.
-# 
-TIDY_MAJOR_VERSION=0
-TIDY_MINOR_VERSION=99
-TIDY_MICRO_VERSION=0
-TIDY_INTERFACE_AGE=0
-TIDY_BINARY_AGE=0
-
-LIBTIDY_VERSION=$TIDY_MAJOR_VERSION.$TIDY_MINOR_VERSION.$TIDY_MICRO_VERSION
-
-AC_SUBST(LIBTIDY_VERSION)
-
-# libtool versioning
-# 
-LT_RELEASE=$TIDY_MAJOR_VERSION.$TIDY_MINOR_VERSION
-LT_CURRENT=`expr $TIDY_MICRO_VERSION - $TIDY_INTERFACE_AGE`
-LT_REVISION=$TIDY_INTERFACE_AGE
-LT_AGE=`expr $TIDY_BINARY_AGE - $TIDY_INTERFACE_AGE`
-
-AC_SUBST(LT_RELEASE)
-AC_SUBST(LT_CURRENT)
-AC_SUBST(LT_REVISION)
-AC_SUBST(LT_AGE)
-
-AM_INIT_AUTOMAKE(tidy,$LIBTIDY_VERSION)
-
-# Checks for programs.
-
-# =============================================
-# AC_PROG_CC has a habit of adding -g to CFLAGS
-# 
-save_cflags="$CFLAGS"
-
-AC_PROG_CC
-if test "x$GCC" = "xyes"; then
-	WARNING_CFLAGS="-Wall"
-else
-	WARNING_CFLAGS=""
-fi
-AC_SUBST(WARNING_CFLAGS)
-
-debug_build=no
-AC_ARG_ENABLE(debug,[  --enable-debug          add -g (instead of -O2) to CFLAGS],[
-	if test "x$enableval" = "xyes"; then
-		debug_build=yes
-	fi
-])
-if test $debug_build = yes; then
-	CFLAGS="$save_cflags -g"
-else
-	CFLAGS="-O2 $save_cflags"
-fi
-# 
-# =============================================
-
-AC_PROG_CPP
-AC_PROG_CXX
-AC_PROG_INSTALL
-AC_PROG_LN_S
-AC_PROG_LIBTOOL
-AC_PROG_MAKE_SET
-
-support_access=yes
-AC_ARG_ENABLE(access,[  --enable-access         support accessibility checks],[
-	if test "x$enableval" = "xno"; then
-		support_access=no
-	fi
-])
-if test $support_access = yes; then
-	AC_DEFINE(SUPPORT_ACCESSIBILITY_CHECKS,1)
-else
-	AC_DEFINE(SUPPORT_ACCESSIBILITY_CHECKS,0)
-fi
-
-support_utf16=yes
-AC_ARG_ENABLE(utf16,[  --enable-utf16          support UTF-16 encoding],[
-	if test "x$enableval" = "xno"; then
-		support_utf16=no
-	fi
-])
-if test $support_utf16 = yes; then
-	AC_DEFINE(SUPPORT_UTF16_ENCODINGS,1)
-else
-	AC_DEFINE(SUPPORT_UTF16_ENCODINGS,0)
-fi
-
-support_asian=yes
-AC_ARG_ENABLE(asian,[  --enable-asian          support asian encodings],[
-	if test "x$enableval" = "xno"; then
-		support_asian=no
-	fi
-])
-if test $support_asian = yes; then
-	AC_DEFINE(SUPPORT_ASIAN_ENCODINGS,1)
-else
-	AC_DEFINE(SUPPORT_ASIAN_ENCODINGS,0)
-fi
-
-# TODO: this defines "WITH_DMALLOC" but tidy expects "DMALLOC"
-#       need to do: #if defined(DMALLOC) || defined(WITH_DMALLOC)
-# 
-AM_WITH_DMALLOC
-
-AC_OUTPUT([
-	Makefile
-	src/Makefile
-	console/Makefile
-	include/Makefile
-])
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/console/Makefile.am b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/console/Makefile.am
deleted file mode 100644
index b550730..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/console/Makefile.am
+++ /dev/null
@@ -1,58 +0,0 @@
-# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
-#
-#  Copyright (c) 1998-2008 World Wide Web Consortium
-#  (Massachusetts Institute of Technology, European Research 
-#  Consortium for Informatics and Mathematics, Keio University).
-#  All Rights Reserved.
-#
-#  Contributing Author(s):
-#
-#     Dave Raggett <dsr@w3.org>
-#     Terry Teague <terry_teague@users.sourceforge.net>
-#     Pradeep Padala<ppadala@users.sourceforge.net>
-#
-#  The contributing author(s) would like to thank all those who
-#  helped with testing, bug fixes, and patience.  This wouldn't
-#  have been possible without all of you.
-#
-#  COPYRIGHT NOTICE:
-#
-#  This software and documentation is provided "as is," and
-#  the copyright holders and contributing author(s) make no
-#  representations or warranties, express or implied, including
-#  but not limited to, warranties of merchantability or fitness
-#  for any particular purpose or that the use of the software or
-#  documentation will not infringe any third party patents,
-#  copyrights, trademarks or other rights. 
-#
-#  The copyright holders and contributing author(s) will not be
-#  liable for any direct, indirect, special or consequential damages
-#  arising out of any use of the software or documentation, even if
-#  advised of the possibility of such damage.
-#
-#  Permission is hereby granted to use, copy, modify, and distribute
-#  this source code, or portions hereof, documentation and executables,
-#  for any purpose, without fee, subject to the following restrictions:
-#
-#  1. The origin of this source code must not be misrepresented.
-#  2. Altered versions must be plainly marked as such and must
-#     not be misrepresented as being the original source.
-#  3. This Copyright notice may not be removed or altered from any
-#     source or altered source distribution.
-# 
-#  The copyright holders and contributing author(s) specifically
-#  permit, without fee, and encourage the use of this source code
-#  as a component for supporting the Hypertext Markup Language in
-#  commercial products. If you use this source code in a product,
-#  acknowledgment is not required but would be appreciated.
-#
-
-AM_CFLAGS = @CFLAGS@ @WARNING_CFLAGS@
-
-INCLUDES = -I$(top_srcdir)/include
-
-bin_PROGRAMS = tidy tab2space
-
-tidy_LDADD = $(top_builddir)/src/libtidy.la
-
-tab2space_LDADD = $(top_builddir)/src/libtidy.la
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/include/Makefile.am b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/include/Makefile.am
deleted file mode 100644
index eedb63e..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/include/Makefile.am
+++ /dev/null
@@ -1,55 +0,0 @@
-# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
-#
-#  Copyright (c) 1998-2006 World Wide Web Consortium
-#  (Massachusetts Institute of Technology, European Research 
-#  Consortium for Informatics and Mathematics, Keio University).
-#  All Rights Reserved.
-#
-#  Contributing Author(s):
-#
-#     Dave Raggett <dsr@w3.org>
-#     Terry Teague <terry_teague@users.sourceforge.net>
-#     Pradeep Padala<ppadala@users.sourceforge.net>
-#
-#  The contributing author(s) would like to thank all those who
-#  helped with testing, bug fixes, and patience.  This wouldn't
-#  have been possible without all of you.
-#
-#  COPYRIGHT NOTICE:
-#
-#  This software and documentation is provided "as is," and
-#  the copyright holders and contributing author(s) make no
-#  representations or warranties, express or implied, including
-#  but not limited to, warranties of merchantability or fitness
-#  for any particular purpose or that the use of the software or
-#  documentation will not infringe any third party patents,
-#  copyrights, trademarks or other rights. 
-#
-#  The copyright holders and contributing author(s) will not be
-#  liable for any direct, indirect, special or consequential damages
-#  arising out of any use of the software or documentation, even if
-#  advised of the possibility of such damage.
-#
-#  Permission is hereby granted to use, copy, modify, and distribute
-#  this source code, or portions hereof, documentation and executables,
-#  for any purpose, without fee, subject to the following restrictions:
-#
-#  1. The origin of this source code must not be misrepresented.
-#  2. Altered versions must be plainly marked as such and must
-#     not be misrepresented as being the original source.
-#  3. This Copyright notice may not be removed or altered from any
-#     source or altered source distribution.
-# 
-#  The copyright holders and contributing author(s) specifically
-#  permit, without fee, and encourage the use of this source code
-#  as a component for supporting the Hypertext Markup Language in
-#  commercial products. If you use this source code in a product,
-#  acknowledgment is not required but would be appreciated.
-#
-
-#tidyincdir = $(includedir)/tidy
-tidyincdir = $(includedir)
-
-tidyinc_HEADERS = \
-	platform.h \
-	tidy.h		tidyenum.h	buffio.h
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/readme.txt b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/readme.txt
deleted file mode 100644
index 365d9d4..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/readme.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-To use GNU "Auto" tools (AutoConf/AutoMake/LibTool), run
-/bin/sh build/gnuauto/setup.sh from the top-level Tidy
-directory.  This script will copy the appropriate 
-Makefile.am files into each source directory, along with
-configure.in.
-
-If the script was successful you should now be able
-to build in the usual way:
-
-	$ ./configure --prefix=/usr
-	$ make
-	$ make install
-
-to get a list of configure options type: ./configure --help
-
-Alternatively, you should be able to build outside of the source
-tree. e.g.:
-
- 	$ mkdir ../build-tidy
- 	$ cd ../build-tidy
- 	$ ../tidy/configure --prefix=/usr
- 	$ make
- 	$ make install
-
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/setup.sh b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/setup.sh
deleted file mode 100644
index b720dc6..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/setup.sh
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/bin/sh
-
-if ! test -f build/gnuauto/setup.sh; then
-
-   echo ""
-   echo "* * * Execute this script from the top source directory, e.g.:"
-   echo ""
-   echo "	$ /bin/sh build/gnuauto/setup.sh"
-   echo ""
-
-else
-
-   for i in libtoolize glibtoolize 
-   do 
-      ( $i --version) < /dev/null > /dev/null 2>&1 && 
-      LIBTOOLIZE=$i 
-   done 
-   if test -z "$LIBTOOLIZE" ; then 
-      echo "You need libtoolize to continue" 
-      exit 1; 
-   fi
-   top_srcdir=`pwd`
-   echo ""
-   echo "Generating the build system in $top_srcdir"
-   echo ""
-   echo "copying files into place: cd build/gnuauto && cp -R -f * $top_srcdir"
-   (cd build/gnuauto && cp -R -f * $top_srcdir)
-   echo "running: $LIBTOOLIZE --force --copy"
-   $LIBTOOLIZE --force --copy
-   echo "running: aclocal"
-   aclocal
-   echo "running: automake -a -c --foreign"
-   automake -a -c --foreign
-   echo "running: autoconf"
-   autoconf
-   echo ""
-   echo "If the above commands were successful you should now be able"
-   echo "to build in the usual way:"
-   echo ""
-   echo "	$ ./configure --prefix=/usr"
-   echo "	$ make"
-   echo "	$ make install"
-   echo ""
-   echo "to get a list of configure options type: ./configure --help"
-   echo ""
-   echo "Alternatively, you should be able to build outside of the source"
-   echo "tree. e.g.:"
-   echo ""
-   echo "	$ mkdir ../build-tidy"
-   echo "	$ cd ../build-tidy"
-   echo "	$ ../tidy/configure --prefix=/usr"
-   echo "	$ make"
-   echo "	$ make install"
-   echo ""
-
-fi
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/src/Makefile.am b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/src/Makefile.am
deleted file mode 100644
index db315fc..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/gnuauto/src/Makefile.am
+++ /dev/null
@@ -1,75 +0,0 @@
-# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
-#
-#  Copyright (c) 1998-2008 World Wide Web Consortium
-#  (Massachusetts Institute of Technology, European Research 
-#  Consortium for Informatics and Mathematics, Keio University).
-#  All Rights Reserved.
-#
-#  Contributing Author(s):
-#
-#     Dave Raggett <dsr@w3.org>
-#     Terry Teague <terry_teague@users.sourceforge.net>
-#     Pradeep Padala<ppadala@users.sourceforge.net>
-#
-#  The contributing author(s) would like to thank all those who
-#  helped with testing, bug fixes, and patience.  This wouldn't
-#  have been possible without all of you.
-#
-#  COPYRIGHT NOTICE:
-#
-#  This software and documentation is provided "as is," and
-#  the copyright holders and contributing author(s) make no
-#  representations or warranties, express or implied, including
-#  but not limited to, warranties of merchantability or fitness
-#  for any particular purpose or that the use of the software or
-#  documentation will not infringe any third party patents,
-#  copyrights, trademarks or other rights. 
-#
-#  The copyright holders and contributing author(s) will not be
-#  liable for any direct, indirect, special or consequential damages
-#  arising out of any use of the software or documentation, even if
-#  advised of the possibility of such damage.
-#
-#  Permission is hereby granted to use, copy, modify, and distribute
-#  this source code, or portions hereof, documentation and executables,
-#  for any purpose, without fee, subject to the following restrictions:
-#
-#  1. The origin of this source code must not be misrepresented.
-#  2. Altered versions must be plainly marked as such and must
-#     not be misrepresented as being the original source.
-#  3. This Copyright notice may not be removed or altered from any
-#     source or altered source distribution.
-# 
-#  The copyright holders and contributing author(s) specifically
-#  permit, without fee, and encourage the use of this source code
-#  as a component for supporting the Hypertext Markup Language in
-#  commercial products. If you use this source code in a product,
-#  acknowledgment is not required but would be appreciated.
-#
-
-AM_CFLAGS = @CFLAGS@ @WARNING_CFLAGS@
-
-INCLUDES = -I$(top_srcdir)/include
-
-lib_LTLIBRARIES = libtidy.la
-
-libtidy_la_SOURCES = \
-	access.c	attrs.c		istack.c	parser.c \
-	tags.c		entities.c	lexer.c		pprint.c \
-	clean.c		localize.c	config.c	alloc.c \
-	attrask.c	attrdict.c	attrget.c	buffio.c \
-	fileio.c	streamio.c	tagask.c	tmbstr.c \
-	utf8.c		tidylib.c	mappedio.c	gdoc.c
-
-libtidy_la_LDFLAGS = \
-	-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
-	-release $(LT_RELEASE) -no-undefined -export-dynamic
-
-HFILES = \
-	access.h	attrdict.h	attrs.h		clean.h \
-	config.h	entities.h	fileio.h 	forward.h \
-	lexer.h		mappedio.h	message.h	parser.h \
-	pprint.h	streamio.h	tags.h		tmbstr.h \
-	utf8.h		tidy-int.h	version.h	gdoc.h
-
-EXTRA_DIST = $(HFILES)
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidy.def b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidy.def
deleted file mode 100755
index 317b540..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidy.def
+++ /dev/null
@@ -1,304 +0,0 @@
-LIBRARY libtidy
-  EXPORTS
-    tidyCreate                    @1001
-    tidyRelease                   @1002
-    tidySetAppData                @1003
-    tidyGetAppData                @1004
-    tidyReleaseDate               @1005
-    tidyStatus                    @1006
-    tidyDetectedHtmlVersion       @1007
-    tidyDetectedXhtml             @1008
-    tidyDetectedGenericXml        @1009
-    tidyErrorCount                @1010
-    tidyWarningCount              @1011
-    tidyAccessWarningCount        @1012
-    tidyConfigErrorCount          @1013
-    tidyLoadConfig                @1014
-    tidyLoadConfigEnc             @1015
-    tidyFileExists                @1016
-    tidySetCharEncoding           @1017
-    tidySetInCharEncoding         @1018
-    tidySetOutCharEncoding        @1019
-    tidySetOptionCallback         @1020
-    tidyOptGetIdForName           @1021
-    tidyGetOptionList             @1022
-    tidyGetNextOption             @1023
-    tidyGetOption                 @1024
-    tidyGetOptionByName           @1025
-    tidyOptGetId                  @1026
-    tidyOptGetName                @1027
-    tidyOptGetType                @1028
-    tidyOptIsReadOnly             @1029
-    tidyOptGetCategory            @1030
-    tidyOptGetDefault             @1031
-    tidyOptGetDefaultInt          @1032
-    tidyOptGetDefaultBool         @1033
-    tidyOptGetPickList            @1034
-    tidyOptGetNextPick            @1035
-    tidyOptGetValue               @1036
-    tidyOptSetValue               @1037
-    tidyOptParseValue             @1038
-    tidyOptGetInt                 @1039
-    tidyOptSetInt                 @1040
-    tidyOptGetBool                @1041
-    tidyOptSetBool                @1042
-    tidyOptResetToDefault         @1043
-    tidyOptResetAllToDefault      @1044
-    tidyOptSnapshot               @1045
-    tidyOptResetToSnapshot        @1046
-    tidyOptDiffThanDefault        @1047
-    tidyOptDiffThanSnapshot       @1048
-    tidyOptCopyConfig             @1049
-    tidyOptGetEncName             @1050
-    tidyOptGetCurrPick            @1051
-    tidyOptGetDeclTagList         @1052
-    tidyOptGetNextDeclTag         @1053
-    tidyOptGetDoc                 @1054
-    tidyOptGetDocLinksList        @1055
-    tidyOptGetNextDocLinks        @1056
-    tidyInitSource                @1057
-    tidyGetByte                   @1058
-    tidyUngetByte                 @1059
-    tidyIsEOF                     @1060
-    tidyInitSink                  @1061
-    tidyPutByte                   @1062
-    tidySetReportFilter           @1063
-    tidySetErrorFile              @1064
-    tidySetErrorBuffer            @1065
-    tidySetErrorSink              @1066
-    tidySetMallocCall             @1067
-    tidySetReallocCall            @1068
-    tidySetFreeCall               @1069
-    tidySetPanicCall              @1070
-    tidyParseFile                 @1071
-    tidyParseStdin                @1072
-    tidyParseString               @1073
-    tidyParseBuffer               @1074
-    tidyParseSource               @1075
-    tidyCleanAndRepair            @1076
-    tidyRunDiagnostics            @1077
-    tidySaveFile                  @1078
-    tidySaveStdout                @1079
-    tidySaveBuffer                @1080
-    tidySaveString                @1081
-    tidySaveSink                  @1082
-    tidyOptSaveFile               @1083
-    tidyOptSaveSink               @1084
-    tidyErrorSummary              @1085
-    tidyGeneralInfo               @1086
-    tidyGetRoot                   @1087
-    tidyGetHtml                   @1088
-    tidyGetHead                   @1089
-    tidyGetBody                   @1090
-    tidyGetParent                 @1091
-    tidyGetChild                  @1092
-    tidyGetNext                   @1093
-    tidyGetPrev                   @1094
-    tidyAttrFirst                 @1095
-    tidyAttrNext                  @1096
-    tidyAttrName                  @1097
-    tidyAttrValue                 @1098
-    tidyNodeGetType               @1099
-    tidyNodeGetName               @1100
-    tidyNodeIsText                @1101
-    tidyNodeIsProp                @1102
-    tidyNodeIsHeader              @1103
-    tidyNodeHasText               @1104
-    tidyNodeGetText               @1105
-    tidyNodeGetId                 @1106
-    tidyNodeLine                  @1107
-    tidyNodeColumn                @1108
-    tidyNodeIsHTML                @1109
-    tidyNodeIsHEAD                @1110
-    tidyNodeIsTITLE               @1111
-    tidyNodeIsBASE                @1112
-    tidyNodeIsMETA                @1113
-    tidyNodeIsBODY                @1114
-    tidyNodeIsFRAMESET            @1115
-    tidyNodeIsFRAME               @1116
-    tidyNodeIsIFRAME              @1117
-    tidyNodeIsNOFRAMES            @1118
-    tidyNodeIsHR                  @1119
-    tidyNodeIsH1                  @1120
-    tidyNodeIsH2                  @1121
-    tidyNodeIsPRE                 @1122
-    tidyNodeIsLISTING             @1123
-    tidyNodeIsP                   @1124
-    tidyNodeIsUL                  @1125
-    tidyNodeIsOL                  @1126
-    tidyNodeIsDL                  @1127
-    tidyNodeIsDIR                 @1128
-    tidyNodeIsLI                  @1129
-    tidyNodeIsDT                  @1130
-    tidyNodeIsDD                  @1131
-    tidyNodeIsTABLE               @1132
-    tidyNodeIsCAPTION             @1133
-    tidyNodeIsTD                  @1134
-    tidyNodeIsTH                  @1135
-    tidyNodeIsTR                  @1136
-    tidyNodeIsCOL                 @1137
-    tidyNodeIsCOLGROUP            @1138
-    tidyNodeIsBR                  @1139
-    tidyNodeIsA                   @1140
-    tidyNodeIsLINK                @1141
-    tidyNodeIsB                   @1142
-    tidyNodeIsI                   @1143
-    tidyNodeIsSTRONG              @1144
-    tidyNodeIsEM                  @1145
-    tidyNodeIsBIG                 @1146
-    tidyNodeIsSMALL               @1147
-    tidyNodeIsPARAM               @1148
-    tidyNodeIsOPTION              @1149
-    tidyNodeIsOPTGROUP            @1150
-    tidyNodeIsIMG                 @1151
-    tidyNodeIsMAP                 @1152
-    tidyNodeIsAREA                @1153
-    tidyNodeIsNOBR                @1154
-    tidyNodeIsWBR                 @1155
-    tidyNodeIsFONT                @1156
-    tidyNodeIsLAYER               @1157
-    tidyNodeIsSPACER              @1158
-    tidyNodeIsCENTER              @1159
-    tidyNodeIsSTYLE               @1160
-    tidyNodeIsSCRIPT              @1161
-    tidyNodeIsNOSCRIPT            @1162
-    tidyNodeIsFORM                @1163
-    tidyNodeIsTEXTAREA            @1164
-    tidyNodeIsBLOCKQUOTE          @1165
-    tidyNodeIsAPPLET              @1166
-    tidyNodeIsOBJECT              @1167
-    tidyNodeIsDIV                 @1168
-    tidyNodeIsSPAN                @1169
-    tidyNodeIsINPUT               @1170
-    tidyNodeIsQ                   @1171
-    tidyNodeIsLABEL               @1172
-    tidyNodeIsH3                  @1173
-    tidyNodeIsH4                  @1174
-    tidyNodeIsH5                  @1175
-    tidyNodeIsH6                  @1176
-    tidyNodeIsADDRESS             @1177
-    tidyNodeIsXMP                 @1178
-    tidyNodeIsSELECT              @1179
-    tidyNodeIsBLINK               @1180
-    tidyNodeIsMARQUEE             @1181
-    tidyNodeIsEMBED               @1182
-    tidyNodeIsBASEFONT            @1183
-    tidyNodeIsISINDEX             @1184
-    tidyNodeIsS                   @1185
-    tidyNodeIsSTRIKE              @1186
-    tidyNodeIsU                   @1187
-    tidyNodeIsMENU                @1188
-    tidyAttrGetId                 @1189
-    tidyAttrIsEvent               @1190
-    tidyAttrIsProp                @1191
-    tidyAttrIsHREF                @1192
-    tidyAttrIsSRC                 @1193
-    tidyAttrIsID                  @1194
-    tidyAttrIsNAME                @1195
-    tidyAttrIsSUMMARY             @1196
-    tidyAttrIsALT                 @1197
-    tidyAttrIsLONGDESC            @1198
-    tidyAttrIsUSEMAP              @1199
-    tidyAttrIsISMAP               @1200
-    tidyAttrIsLANGUAGE            @1201
-    tidyAttrIsTYPE                @1202
-    tidyAttrIsVALUE               @1203
-    tidyAttrIsCONTENT             @1204
-    tidyAttrIsTITLE               @1205
-    tidyAttrIsXMLNS               @1206
-    tidyAttrIsDATAFLD             @1207
-    tidyAttrIsWIDTH               @1208
-    tidyAttrIsHEIGHT              @1209
-    tidyAttrIsFOR                 @1210
-    tidyAttrIsSELECTED            @1211
-    tidyAttrIsCHECKED             @1212
-    tidyAttrIsLANG                @1213
-    tidyAttrIsTARGET              @1214
-    tidyAttrIsHTTP_EQUIV          @1215
-    tidyAttrIsREL                 @1216
-    tidyAttrIsOnMOUSEMOVE         @1217
-    tidyAttrIsOnMOUSEDOWN         @1218
-    tidyAttrIsOnMOUSEUP           @1219
-    tidyAttrIsOnCLICK             @1220
-    tidyAttrIsOnMOUSEOVER         @1221
-    tidyAttrIsOnMOUSEOUT          @1222
-    tidyAttrIsOnKEYDOWN           @1223
-    tidyAttrIsOnKEYUP             @1224
-    tidyAttrIsOnKEYPRESS          @1225
-    tidyAttrIsOnFOCUS             @1226
-    tidyAttrIsOnBLUR              @1227
-    tidyAttrIsBGCOLOR             @1228
-    tidyAttrIsLINK                @1229
-    tidyAttrIsALINK               @1230
-    tidyAttrIsVLINK               @1231
-    tidyAttrIsTEXT                @1232
-    tidyAttrIsSTYLE               @1233
-    tidyAttrIsABBR                @1234
-    tidyAttrIsCOLSPAN             @1235
-    tidyAttrIsROWSPAN             @1236
-    tidyAttrGetById               @1237
-    tidyAttrGetHREF               @1238
-    tidyAttrGetSRC                @1239
-    tidyAttrGetID                 @1240
-    tidyAttrGetNAME               @1241
-    tidyAttrGetSUMMARY            @1242
-    tidyAttrGetALT                @1243
-    tidyAttrGetLONGDESC           @1244
-    tidyAttrGetUSEMAP             @1245
-    tidyAttrGetISMAP              @1246
-    tidyAttrGetLANGUAGE           @1247
-    tidyAttrGetTYPE               @1248
-    tidyAttrGetVALUE              @1249
-    tidyAttrGetCONTENT            @1250
-    tidyAttrGetTITLE              @1251
-    tidyAttrGetXMLNS              @1252
-    tidyAttrGetDATAFLD            @1253
-    tidyAttrGetWIDTH              @1254
-    tidyAttrGetHEIGHT             @1255
-    tidyAttrGetFOR                @1256
-    tidyAttrGetSELECTED           @1257
-    tidyAttrGetCHECKED            @1258
-    tidyAttrGetLANG               @1259
-    tidyAttrGetTARGET             @1260
-    tidyAttrGetHTTP_EQUIV         @1261
-    tidyAttrGetREL                @1262
-    tidyAttrGetOnMOUSEMOVE        @1263
-    tidyAttrGetOnMOUSEDOWN        @1264
-    tidyAttrGetOnMOUSEUP          @1265
-    tidyAttrGetOnCLICK            @1266
-    tidyAttrGetOnMOUSEOVER        @1267
-    tidyAttrGetOnMOUSEOUT         @1268
-    tidyAttrGetOnKEYDOWN          @1269
-    tidyAttrGetOnKEYUP            @1270
-    tidyAttrGetOnKEYPRESS         @1271
-    tidyAttrGetOnFOCUS            @1272
-    tidyAttrGetOnBLUR             @1273
-    tidyAttrGetBGCOLOR            @1274
-    tidyAttrGetLINK               @1275
-    tidyAttrGetALINK              @1276
-    tidyAttrGetVLINK              @1277
-    tidyAttrGetTEXT               @1278
-    tidyAttrGetSTYLE              @1279
-    tidyAttrGetABBR               @1280
-    tidyAttrGetCOLSPAN            @1281
-    tidyAttrGetROWSPAN            @1282
-    tidyCreateWithAllocator       @1283
-
-    tidyInitInputBuffer           @2001
-    tidyInitOutputBuffer          @2002
-    tidyBufInit                   @2003
-    tidyBufAlloc                  @2004
-    tidyBufCheckAlloc             @2005
-    tidyBufFree                   @2006
-    tidyBufClear                  @2007
-    tidyBufAttach                 @2008
-    tidyBufDetach                 @2009
-    tidyBufAppend                 @2010
-    tidyBufPutByte                @2011
-    tidyBufPopByte                @2012
-    tidyBufGetByte                @2013
-    tidyBufEndOfInput             @2014
-    tidyBufUngetByte              @2015
-    tidyBufInitWithAllocator      @2016
-    tidyBufAllocWithAllocator     @2017
-    tidyNodeGetValue              @2018
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidy.dsp b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidy.dsp
deleted file mode 100644
index e95adde..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidy.dsp
+++ /dev/null
@@ -1,94 +0,0 @@
-# Microsoft Developer Studio Project File - Name="tidy" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
-
-CFG=tidy - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "tidy.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "tidy.mak" CFG="tidy - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "tidy - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "tidy - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE 
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=cl.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "tidy - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "Release"
-# PROP Intermediate_Dir "Release"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD CPP /nologo /MT /Za /W3 /GX /O2 /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /D TIDYDLL_EXPORT=__declspec(dllimport) /D _CRT_SECURE_NO_DEPRECATE /YX /FD /c
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /profile /map /machine:I386
-
-!ELSEIF  "$(CFG)" == "tidy - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "Debug"
-# PROP Intermediate_Dir "Debug"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
-# ADD CPP /nologo /MTd /Za /W3 /Gm /GX /ZI /Od /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /D TIDYDLL_EXPORT=__declspec(dllimport) /D _CRT_SECURE_NO_DEPRECATE /YX /FD /GZ /c
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
-
-!ENDIF 
-
-# Begin Target
-
-# Name "tidy - Win32 Release"
-# Name "tidy - Win32 Debug"
-# Begin Group "Source Files"
-
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
-# Begin Source File
-
-SOURCE=..\..\console\tidy.c
-# End Source File
-# End Group
-# End Target
-# End Project
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidy.dsw b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidy.dsw
deleted file mode 100644
index e967fe0..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidy.dsw
+++ /dev/null
@@ -1,56 +0,0 @@
-Microsoft Developer Studio Workspace File, Format Version 6.00
-# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
-
-###############################################################################
-
-Project: "tidy"=.\tidy.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-    Begin Project Dependency
-    Project_Dep_Name tidylib
-    End Project Dependency
-}}}
-
-###############################################################################
-
-Project: "tidydll"=.\tidydll.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Project: "tidylib"=.\tidylib.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Global:
-
-Package=<5>
-{{{
-}}}
-
-Package=<3>
-{{{
-}}}
-
-###############################################################################
-
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidydll.dsp b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidydll.dsp
deleted file mode 100644
index 129c6de..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidydll.dsp
+++ /dev/null
@@ -1,296 +0,0 @@
-# Microsoft Developer Studio Project File - Name="tidydll" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
-
-CFG=tidydll - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "tidydll.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "tidydll.mak" CFG="tidydll - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "tidydll - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "tidydll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE 
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=cl.exe
-MTL=midl.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "tidydll - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "tidydll___Win32_Release"
-# PROP BASE Intermediate_Dir "tidydll___Win32_Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "ReleaseDLL"
-# PROP Intermediate_Dir "ReleaseDLL"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TIDYDLL_EXPORTS" /YX /FD /c
-# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TIDYDLL_EXPORTS" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /YX /FD /c
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /out:"ReleaseDLL/libtidy.dll"
-
-!ELSEIF  "$(CFG)" == "tidydll - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "tidydll___Win32_Debug"
-# PROP BASE Intermediate_Dir "tidydll___Win32_Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "DebugDLL"
-# PROP Intermediate_Dir "DebugDLL"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TIDYDLL_EXPORTS" /YX /FD /GZ /c
-# ADD CPP /nologo /MDd /W3 /ZI /Od /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /FD /GZ /c
-# SUBTRACT CPP /YX
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /out:"DebugDLL/libtidy.dll" /pdbtype:sept
-
-!ENDIF 
-
-# Begin Target
-
-# Name "tidydll - Win32 Release"
-# Name "tidydll - Win32 Debug"
-# Begin Group "Source Files"
-
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
-# Begin Source File
-
-SOURCE=..\..\src\access.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\alloc.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrask.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrdict.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrget.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrs.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\buffio.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\clean.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\config.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\entities.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\fileio.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\istack.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\lexer.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\localize.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\mappedio.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\parser.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\pprint.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\streamio.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tagask.c
-# End Source File
-# Begin Source File
-
-SOURCE=.\tidy.def
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tags.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tidylib.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tmbstr.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\utf8.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\win32tc.c
-# End Source File
-# End Group
-# Begin Group "Header Files"
-
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
-# Begin Source File
-
-SOURCE=..\..\src\access.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrdict.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrs.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\buffio.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\clean.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\config.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\entities.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\fileio.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\forward.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\lexer.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\mappedio.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\message.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\parser.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\platform.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\pprint.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\streamio.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tags.h
-# End Source File
-# Begin Source File
-
-SOURCE="..\..\src\tidy-int.h"
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\tidy.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\tidyenum.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tmbstr.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\utf8.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\version.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\win32tc.h
-# End Source File
-# End Group
-# End Target
-# End Project
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidylib.dsp b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidylib.dsp
deleted file mode 100644
index d5a233c..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc/tidylib.dsp
+++ /dev/null
@@ -1,295 +0,0 @@
-# Microsoft Developer Studio Project File - Name="tidylib" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Static Library" 0x0104
-
-CFG=tidylib - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "tidylib.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "tidylib.mak" CFG="tidylib - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "tidylib - Win32 Release" (based on "Win32 (x86) Static Library")
-!MESSAGE "tidylib - Win32 Debug" (based on "Win32 (x86) Static Library")
-!MESSAGE 
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=cl.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "tidylib - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "Release"
-# PROP Intermediate_Dir "Release"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
-# ADD CPP /nologo /MT /W4 /GX /O2 /I "../../include" /D "NDEBUG" /D "_LIB" /D "WIN32" /D "_MBCS" /D "SUPPORT_UTF16_ENCODINGS" /D "SUPPORT_ASIAN_ENCODINGS" /D "SUPPORT_ACCESSIBILITY_CHECKS" /FD /c
-# SUBTRACT CPP /YX
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LIB32=link.exe -lib
-# ADD BASE LIB32 /nologo
-# ADD LIB32 /nologo /out:"Release\libtidy.lib"
-
-!ELSEIF  "$(CFG)" == "tidylib - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "Debug"
-# PROP Intermediate_Dir "Debug"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
-# ADD CPP /nologo /MTd /Za /W4 /Gm /ZI /Od /I "../../include" /D "_DEBUG" /D "_WIN32" /D "_LIB" /D "WIN32" /D "_MBCS" /D "SUPPORT_UTF16_ENCODINGS" /D "SUPPORT_ASIAN_ENCODINGS" /D "SUPPORT_ACCESSIBILITY_CHECKS" /U "WINDOWS" /FD /GZ /c
-# SUBTRACT CPP /YX
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LIB32=link.exe -lib
-# ADD BASE LIB32 /nologo
-# ADD LIB32 /nologo /out:"Debug\libtidy.lib"
-
-!ENDIF 
-
-# Begin Target
-
-# Name "tidylib - Win32 Release"
-# Name "tidylib - Win32 Debug"
-# Begin Group "Source Files"
-
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
-# Begin Source File
-
-SOURCE=..\..\src\access.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\alloc.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrask.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrdict.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrget.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrs.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\buffio.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\clean.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\config.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\entities.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\fileio.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\istack.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\lexer.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\localize.c
-# End Source File
-# Begin Source File
- 
-SOURCE=..\..\src\mappedio.c
-
-!IF  "$(CFG)" == "tidylib - Win32 Release"
-
-!ELSEIF  "$(CFG)" == "tidylib - Win32 Debug"
-
-# ADD CPP /Ze
-
-!ENDIF 
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\parser.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\pprint.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\streamio.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tagask.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tags.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tidylib.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tmbstr.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\utf8.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\win32tc.c
-# End Source File
-# End Group
-# Begin Group "Header Files"
-
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
-# Begin Source File
-
-SOURCE=..\..\src\access.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrdict.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\attrs.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\buffio.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\clean.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\config.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\entities.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\fileio.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\forward.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\lexer.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\mappedio.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\message.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\parser.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\platform.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\pprint.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\streamio.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tags.h
-# End Source File
-# Begin Source File
-
-SOURCE="..\..\src\tidy-int.h"
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\tidy.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\tidyenum.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\tmbstr.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\utf8.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\version.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\src\win32tc.h
-# End Source File
-# End Group
-# End Target
-# End Project
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidy.def b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidy.def
deleted file mode 100644
index 317b540..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidy.def
+++ /dev/null
@@ -1,304 +0,0 @@
-LIBRARY libtidy
-  EXPORTS
-    tidyCreate                    @1001
-    tidyRelease                   @1002
-    tidySetAppData                @1003
-    tidyGetAppData                @1004
-    tidyReleaseDate               @1005
-    tidyStatus                    @1006
-    tidyDetectedHtmlVersion       @1007
-    tidyDetectedXhtml             @1008
-    tidyDetectedGenericXml        @1009
-    tidyErrorCount                @1010
-    tidyWarningCount              @1011
-    tidyAccessWarningCount        @1012
-    tidyConfigErrorCount          @1013
-    tidyLoadConfig                @1014
-    tidyLoadConfigEnc             @1015
-    tidyFileExists                @1016
-    tidySetCharEncoding           @1017
-    tidySetInCharEncoding         @1018
-    tidySetOutCharEncoding        @1019
-    tidySetOptionCallback         @1020
-    tidyOptGetIdForName           @1021
-    tidyGetOptionList             @1022
-    tidyGetNextOption             @1023
-    tidyGetOption                 @1024
-    tidyGetOptionByName           @1025
-    tidyOptGetId                  @1026
-    tidyOptGetName                @1027
-    tidyOptGetType                @1028
-    tidyOptIsReadOnly             @1029
-    tidyOptGetCategory            @1030
-    tidyOptGetDefault             @1031
-    tidyOptGetDefaultInt          @1032
-    tidyOptGetDefaultBool         @1033
-    tidyOptGetPickList            @1034
-    tidyOptGetNextPick            @1035
-    tidyOptGetValue               @1036
-    tidyOptSetValue               @1037
-    tidyOptParseValue             @1038
-    tidyOptGetInt                 @1039
-    tidyOptSetInt                 @1040
-    tidyOptGetBool                @1041
-    tidyOptSetBool                @1042
-    tidyOptResetToDefault         @1043
-    tidyOptResetAllToDefault      @1044
-    tidyOptSnapshot               @1045
-    tidyOptResetToSnapshot        @1046
-    tidyOptDiffThanDefault        @1047
-    tidyOptDiffThanSnapshot       @1048
-    tidyOptCopyConfig             @1049
-    tidyOptGetEncName             @1050
-    tidyOptGetCurrPick            @1051
-    tidyOptGetDeclTagList         @1052
-    tidyOptGetNextDeclTag         @1053
-    tidyOptGetDoc                 @1054
-    tidyOptGetDocLinksList        @1055
-    tidyOptGetNextDocLinks        @1056
-    tidyInitSource                @1057
-    tidyGetByte                   @1058
-    tidyUngetByte                 @1059
-    tidyIsEOF                     @1060
-    tidyInitSink                  @1061
-    tidyPutByte                   @1062
-    tidySetReportFilter           @1063
-    tidySetErrorFile              @1064
-    tidySetErrorBuffer            @1065
-    tidySetErrorSink              @1066
-    tidySetMallocCall             @1067
-    tidySetReallocCall            @1068
-    tidySetFreeCall               @1069
-    tidySetPanicCall              @1070
-    tidyParseFile                 @1071
-    tidyParseStdin                @1072
-    tidyParseString               @1073
-    tidyParseBuffer               @1074
-    tidyParseSource               @1075
-    tidyCleanAndRepair            @1076
-    tidyRunDiagnostics            @1077
-    tidySaveFile                  @1078
-    tidySaveStdout                @1079
-    tidySaveBuffer                @1080
-    tidySaveString                @1081
-    tidySaveSink                  @1082
-    tidyOptSaveFile               @1083
-    tidyOptSaveSink               @1084
-    tidyErrorSummary              @1085
-    tidyGeneralInfo               @1086
-    tidyGetRoot                   @1087
-    tidyGetHtml                   @1088
-    tidyGetHead                   @1089
-    tidyGetBody                   @1090
-    tidyGetParent                 @1091
-    tidyGetChild                  @1092
-    tidyGetNext                   @1093
-    tidyGetPrev                   @1094
-    tidyAttrFirst                 @1095
-    tidyAttrNext                  @1096
-    tidyAttrName                  @1097
-    tidyAttrValue                 @1098
-    tidyNodeGetType               @1099
-    tidyNodeGetName               @1100
-    tidyNodeIsText                @1101
-    tidyNodeIsProp                @1102
-    tidyNodeIsHeader              @1103
-    tidyNodeHasText               @1104
-    tidyNodeGetText               @1105
-    tidyNodeGetId                 @1106
-    tidyNodeLine                  @1107
-    tidyNodeColumn                @1108
-    tidyNodeIsHTML                @1109
-    tidyNodeIsHEAD                @1110
-    tidyNodeIsTITLE               @1111
-    tidyNodeIsBASE                @1112
-    tidyNodeIsMETA                @1113
-    tidyNodeIsBODY                @1114
-    tidyNodeIsFRAMESET            @1115
-    tidyNodeIsFRAME               @1116
-    tidyNodeIsIFRAME              @1117
-    tidyNodeIsNOFRAMES            @1118
-    tidyNodeIsHR                  @1119
-    tidyNodeIsH1                  @1120
-    tidyNodeIsH2                  @1121
-    tidyNodeIsPRE                 @1122
-    tidyNodeIsLISTING             @1123
-    tidyNodeIsP                   @1124
-    tidyNodeIsUL                  @1125
-    tidyNodeIsOL                  @1126
-    tidyNodeIsDL                  @1127
-    tidyNodeIsDIR                 @1128
-    tidyNodeIsLI                  @1129
-    tidyNodeIsDT                  @1130
-    tidyNodeIsDD                  @1131
-    tidyNodeIsTABLE               @1132
-    tidyNodeIsCAPTION             @1133
-    tidyNodeIsTD                  @1134
-    tidyNodeIsTH                  @1135
-    tidyNodeIsTR                  @1136
-    tidyNodeIsCOL                 @1137
-    tidyNodeIsCOLGROUP            @1138
-    tidyNodeIsBR                  @1139
-    tidyNodeIsA                   @1140
-    tidyNodeIsLINK                @1141
-    tidyNodeIsB                   @1142
-    tidyNodeIsI                   @1143
-    tidyNodeIsSTRONG              @1144
-    tidyNodeIsEM                  @1145
-    tidyNodeIsBIG                 @1146
-    tidyNodeIsSMALL               @1147
-    tidyNodeIsPARAM               @1148
-    tidyNodeIsOPTION              @1149
-    tidyNodeIsOPTGROUP            @1150
-    tidyNodeIsIMG                 @1151
-    tidyNodeIsMAP                 @1152
-    tidyNodeIsAREA                @1153
-    tidyNodeIsNOBR                @1154
-    tidyNodeIsWBR                 @1155
-    tidyNodeIsFONT                @1156
-    tidyNodeIsLAYER               @1157
-    tidyNodeIsSPACER              @1158
-    tidyNodeIsCENTER              @1159
-    tidyNodeIsSTYLE               @1160
-    tidyNodeIsSCRIPT              @1161
-    tidyNodeIsNOSCRIPT            @1162
-    tidyNodeIsFORM                @1163
-    tidyNodeIsTEXTAREA            @1164
-    tidyNodeIsBLOCKQUOTE          @1165
-    tidyNodeIsAPPLET              @1166
-    tidyNodeIsOBJECT              @1167
-    tidyNodeIsDIV                 @1168
-    tidyNodeIsSPAN                @1169
-    tidyNodeIsINPUT               @1170
-    tidyNodeIsQ                   @1171
-    tidyNodeIsLABEL               @1172
-    tidyNodeIsH3                  @1173
-    tidyNodeIsH4                  @1174
-    tidyNodeIsH5                  @1175
-    tidyNodeIsH6                  @1176
-    tidyNodeIsADDRESS             @1177
-    tidyNodeIsXMP                 @1178
-    tidyNodeIsSELECT              @1179
-    tidyNodeIsBLINK               @1180
-    tidyNodeIsMARQUEE             @1181
-    tidyNodeIsEMBED               @1182
-    tidyNodeIsBASEFONT            @1183
-    tidyNodeIsISINDEX             @1184
-    tidyNodeIsS                   @1185
-    tidyNodeIsSTRIKE              @1186
-    tidyNodeIsU                   @1187
-    tidyNodeIsMENU                @1188
-    tidyAttrGetId                 @1189
-    tidyAttrIsEvent               @1190
-    tidyAttrIsProp                @1191
-    tidyAttrIsHREF                @1192
-    tidyAttrIsSRC                 @1193
-    tidyAttrIsID                  @1194
-    tidyAttrIsNAME                @1195
-    tidyAttrIsSUMMARY             @1196
-    tidyAttrIsALT                 @1197
-    tidyAttrIsLONGDESC            @1198
-    tidyAttrIsUSEMAP              @1199
-    tidyAttrIsISMAP               @1200
-    tidyAttrIsLANGUAGE            @1201
-    tidyAttrIsTYPE                @1202
-    tidyAttrIsVALUE               @1203
-    tidyAttrIsCONTENT             @1204
-    tidyAttrIsTITLE               @1205
-    tidyAttrIsXMLNS               @1206
-    tidyAttrIsDATAFLD             @1207
-    tidyAttrIsWIDTH               @1208
-    tidyAttrIsHEIGHT              @1209
-    tidyAttrIsFOR                 @1210
-    tidyAttrIsSELECTED            @1211
-    tidyAttrIsCHECKED             @1212
-    tidyAttrIsLANG                @1213
-    tidyAttrIsTARGET              @1214
-    tidyAttrIsHTTP_EQUIV          @1215
-    tidyAttrIsREL                 @1216
-    tidyAttrIsOnMOUSEMOVE         @1217
-    tidyAttrIsOnMOUSEDOWN         @1218
-    tidyAttrIsOnMOUSEUP           @1219
-    tidyAttrIsOnCLICK             @1220
-    tidyAttrIsOnMOUSEOVER         @1221
-    tidyAttrIsOnMOUSEOUT          @1222
-    tidyAttrIsOnKEYDOWN           @1223
-    tidyAttrIsOnKEYUP             @1224
-    tidyAttrIsOnKEYPRESS          @1225
-    tidyAttrIsOnFOCUS             @1226
-    tidyAttrIsOnBLUR              @1227
-    tidyAttrIsBGCOLOR             @1228
-    tidyAttrIsLINK                @1229
-    tidyAttrIsALINK               @1230
-    tidyAttrIsVLINK               @1231
-    tidyAttrIsTEXT                @1232
-    tidyAttrIsSTYLE               @1233
-    tidyAttrIsABBR                @1234
-    tidyAttrIsCOLSPAN             @1235
-    tidyAttrIsROWSPAN             @1236
-    tidyAttrGetById               @1237
-    tidyAttrGetHREF               @1238
-    tidyAttrGetSRC                @1239
-    tidyAttrGetID                 @1240
-    tidyAttrGetNAME               @1241
-    tidyAttrGetSUMMARY            @1242
-    tidyAttrGetALT                @1243
-    tidyAttrGetLONGDESC           @1244
-    tidyAttrGetUSEMAP             @1245
-    tidyAttrGetISMAP              @1246
-    tidyAttrGetLANGUAGE           @1247
-    tidyAttrGetTYPE               @1248
-    tidyAttrGetVALUE              @1249
-    tidyAttrGetCONTENT            @1250
-    tidyAttrGetTITLE              @1251
-    tidyAttrGetXMLNS              @1252
-    tidyAttrGetDATAFLD            @1253
-    tidyAttrGetWIDTH              @1254
-    tidyAttrGetHEIGHT             @1255
-    tidyAttrGetFOR                @1256
-    tidyAttrGetSELECTED           @1257
-    tidyAttrGetCHECKED            @1258
-    tidyAttrGetLANG               @1259
-    tidyAttrGetTARGET             @1260
-    tidyAttrGetHTTP_EQUIV         @1261
-    tidyAttrGetREL                @1262
-    tidyAttrGetOnMOUSEMOVE        @1263
-    tidyAttrGetOnMOUSEDOWN        @1264
-    tidyAttrGetOnMOUSEUP          @1265
-    tidyAttrGetOnCLICK            @1266
-    tidyAttrGetOnMOUSEOVER        @1267
-    tidyAttrGetOnMOUSEOUT         @1268
-    tidyAttrGetOnKEYDOWN          @1269
-    tidyAttrGetOnKEYUP            @1270
-    tidyAttrGetOnKEYPRESS         @1271
-    tidyAttrGetOnFOCUS            @1272
-    tidyAttrGetOnBLUR             @1273
-    tidyAttrGetBGCOLOR            @1274
-    tidyAttrGetLINK               @1275
-    tidyAttrGetALINK              @1276
-    tidyAttrGetVLINK              @1277
-    tidyAttrGetTEXT               @1278
-    tidyAttrGetSTYLE              @1279
-    tidyAttrGetABBR               @1280
-    tidyAttrGetCOLSPAN            @1281
-    tidyAttrGetROWSPAN            @1282
-    tidyCreateWithAllocator       @1283
-
-    tidyInitInputBuffer           @2001
-    tidyInitOutputBuffer          @2002
-    tidyBufInit                   @2003
-    tidyBufAlloc                  @2004
-    tidyBufCheckAlloc             @2005
-    tidyBufFree                   @2006
-    tidyBufClear                  @2007
-    tidyBufAttach                 @2008
-    tidyBufDetach                 @2009
-    tidyBufAppend                 @2010
-    tidyBufPutByte                @2011
-    tidyBufPopByte                @2012
-    tidyBufGetByte                @2013
-    tidyBufEndOfInput             @2014
-    tidyBufUngetByte              @2015
-    tidyBufInitWithAllocator      @2016
-    tidyBufAllocWithAllocator     @2017
-    tidyNodeGetValue              @2018
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidy.sln b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidy.sln
deleted file mode 100644
index 0d41875..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidy.sln
+++ /dev/null
@@ -1,35 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 11.00
-# Visual Studio 2010
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tidy", "tidy.vcxproj", "{86771E17-F0DB-445E-AFE9-33EC8AA1E002}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tidydll", "tidydll.vcxproj", "{C9371CCA-E73B-4661-847C-EB45A234C5C7}"
-	ProjectSection(ProjectDependencies) = postProject
-		{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4} = {A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tidylib", "tidylib.vcxproj", "{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}"
-EndProject
-Global
-	GlobalSection(SolutionConfigurationPlatforms) = preSolution
-		Debug|Win32 = Debug|Win32
-		Release|Win32 = Release|Win32
-	EndGlobalSection
-	GlobalSection(ProjectConfigurationPlatforms) = postSolution
-		{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Debug|Win32.ActiveCfg = Debug|Win32
-		{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Debug|Win32.Build.0 = Debug|Win32
-		{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Release|Win32.ActiveCfg = Release|Win32
-		{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Release|Win32.Build.0 = Release|Win32
-		{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Debug|Win32.ActiveCfg = Debug|Win32
-		{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Debug|Win32.Build.0 = Debug|Win32
-		{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Release|Win32.ActiveCfg = Release|Win32
-		{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Release|Win32.Build.0 = Release|Win32
-		{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Debug|Win32.ActiveCfg = Debug|Win32
-		{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Debug|Win32.Build.0 = Debug|Win32
-		{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Release|Win32.ActiveCfg = Release|Win32
-		{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Release|Win32.Build.0 = Release|Win32
-	EndGlobalSection
-	GlobalSection(SolutionProperties) = preSolution
-		HideSolutionNode = FALSE
-	EndGlobalSection
-EndGlobal
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidy.vcxproj b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidy.vcxproj
deleted file mode 100644
index 95a3dfc..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidy.vcxproj
+++ /dev/null
@@ -1,138 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-  <ItemGroup Label="ProjectConfigurations">
-    <ProjectConfiguration Include="Debug|Win32">
-      <Configuration>Debug</Configuration>
-      <Platform>Win32</Platform>
-    </ProjectConfiguration>
-    <ProjectConfiguration Include="Release|Win32">
-      <Configuration>Release</Configuration>
-      <Platform>Win32</Platform>
-    </ProjectConfiguration>
-  </ItemGroup>
-  <PropertyGroup Label="Globals">
-    <ProjectGuid>{86771E17-F0DB-445E-AFE9-33EC8AA1E002}</ProjectGuid>
-    <RootNamespace>tidy</RootNamespace>
-  </PropertyGroup>
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
-    <ConfigurationType>Application</ConfigurationType>
-    <UseOfMfc>false</UseOfMfc>
-    <CharacterSet>MultiByte</CharacterSet>
-  </PropertyGroup>
-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
-    <ConfigurationType>Application</ConfigurationType>
-    <UseOfMfc>false</UseOfMfc>
-    <CharacterSet>MultiByte</CharacterSet>
-  </PropertyGroup>
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
-  <ImportGroup Label="ExtensionSettings">
-  </ImportGroup>
-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
-    <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
-  </ImportGroup>
-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
-    <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
-  </ImportGroup>
-  <PropertyGroup Label="UserMacros" />
-  <PropertyGroup>
-    <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
-    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
-    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
-    <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
-    <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
-    <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
-    <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
-    <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
-    <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
-  </PropertyGroup>
-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
-    <Midl>
-      <TypeLibraryName>.\Release/tidy.tlb</TypeLibraryName>
-      <HeaderFileName>
-      </HeaderFileName>
-    </Midl>
-    <ClCompile>
-      <Optimization>MaxSpeed</Optimization>
-      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-      <AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions>NDEBUG;WIN32;_CONSOLE;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;TIDYDLL_EXPORT=__declspec(dllimport);_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <StringPooling>true</StringPooling>
-      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-      <FunctionLevelLinking>true</FunctionLevelLinking>
-      <DisableLanguageExtensions>true</DisableLanguageExtensions>
-      <WarningLevel>Level3</WarningLevel>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-    </ClCompile>
-    <ResourceCompile>
-      <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <Culture>0x0409</Culture>
-    </ResourceCompile>
-    <Link>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-      <GenerateMapFile>true</GenerateMapFile>
-      <SubSystem>Console</SubSystem>
-      <RandomizedBaseAddress>false</RandomizedBaseAddress>
-      <DataExecutionPrevention>
-      </DataExecutionPrevention>
-      <TargetMachine>MachineX86</TargetMachine>
-    </Link>
-    <Bscmake>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-    </Bscmake>
-  </ItemDefinitionGroup>
-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
-    <Midl>
-      <TypeLibraryName>.\Debug/tidy.tlb</TypeLibraryName>
-      <HeaderFileName>
-      </HeaderFileName>
-    </Midl>
-    <ClCompile>
-      <Optimization>Disabled</Optimization>
-      <AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;TIDYDLL_EXPORT=__declspec(dllimport);_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <MinimalRebuild>true</MinimalRebuild>
-      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
-      <DisableLanguageExtensions>true</DisableLanguageExtensions>
-      <WarningLevel>Level3</WarningLevel>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
-    </ClCompile>
-    <ResourceCompile>
-      <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <Culture>0x0409</Culture>
-    </ResourceCompile>
-    <Link>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-      <GenerateDebugInformation>true</GenerateDebugInformation>
-      <SubSystem>Console</SubSystem>
-      <RandomizedBaseAddress>false</RandomizedBaseAddress>
-      <DataExecutionPrevention>
-      </DataExecutionPrevention>
-      <TargetMachine>MachineX86</TargetMachine>
-    </Link>
-    <Bscmake>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-    </Bscmake>
-  </ItemDefinitionGroup>
-  <ItemGroup>
-    <ClCompile Include="..\..\console\tidy.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-  </ItemGroup>
-  <ItemGroup>
-    <ProjectReference Include="tidylib.vcxproj">
-      <Project>{a3ea53a3-86bb-4d0a-b999-d1ec9411ddd4}</Project>
-      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
-    </ProjectReference>
-  </ItemGroup>
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
-  <ImportGroup Label="ExtensionTargets">
-  </ImportGroup>
-</Project>
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidydll.vcxproj b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidydll.vcxproj
deleted file mode 100644
index 7d77b5c..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidydll.vcxproj
+++ /dev/null
@@ -1,316 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-  <ItemGroup Label="ProjectConfigurations">
-    <ProjectConfiguration Include="Debug|Win32">
-      <Configuration>Debug</Configuration>
-      <Platform>Win32</Platform>
-    </ProjectConfiguration>
-    <ProjectConfiguration Include="Release|Win32">
-      <Configuration>Release</Configuration>
-      <Platform>Win32</Platform>
-    </ProjectConfiguration>
-  </ItemGroup>
-  <PropertyGroup Label="Globals">
-    <ProjectGuid>{C9371CCA-E73B-4661-847C-EB45A234C5C7}</ProjectGuid>
-    <RootNamespace>tidydll</RootNamespace>
-  </PropertyGroup>
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
-    <ConfigurationType>DynamicLibrary</ConfigurationType>
-    <UseOfMfc>false</UseOfMfc>
-    <CharacterSet>MultiByte</CharacterSet>
-  </PropertyGroup>
-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
-    <ConfigurationType>DynamicLibrary</ConfigurationType>
-    <UseOfMfc>false</UseOfMfc>
-    <CharacterSet>MultiByte</CharacterSet>
-  </PropertyGroup>
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
-  <ImportGroup Label="ExtensionSettings">
-  </ImportGroup>
-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
-    <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
-  </ImportGroup>
-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
-    <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
-  </ImportGroup>
-  <PropertyGroup Label="UserMacros" />
-  <PropertyGroup>
-    <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
-    <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
-    <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Obj\$(Configuration)$(MSBuildProjectName)\</IntDir>
-    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
-    <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
-    <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Obj\$(Configuration)$(MSBuildProjectName)\</IntDir>
-    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
-    <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
-    <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
-    <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
-    <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
-    <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
-    <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
-    <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">libtidy.dll</TargetName>
-    <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">libtidy</TargetName>
-  </PropertyGroup>
-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
-    <Midl>
-      <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <MkTypLibCompatible>true</MkTypLibCompatible>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-      <TargetEnvironment>Win32</TargetEnvironment>
-      <TypeLibraryName>.\DebugDLL/tidydll.tlb</TypeLibraryName>
-      <HeaderFileName>
-      </HeaderFileName>
-    </Midl>
-    <ClCompile>
-      <Optimization>Disabled</Optimization>
-      <AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions>_DEBUG;WIN32;_WINDOWS;_USRDLL;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-      <WarningLevel>Level3</WarningLevel>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
-    </ClCompile>
-    <ResourceCompile>
-      <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <Culture>0x0409</Culture>
-    </ResourceCompile>
-    <Link>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-      <ModuleDefinitionFile>.\tidy.def</ModuleDefinitionFile>
-      <GenerateDebugInformation>true</GenerateDebugInformation>
-      <RandomizedBaseAddress>false</RandomizedBaseAddress>
-      <DataExecutionPrevention>
-      </DataExecutionPrevention>
-      <TargetMachine>MachineX86</TargetMachine>
-    </Link>
-    <Bscmake>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-    </Bscmake>
-  </ItemDefinitionGroup>
-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
-    <Midl>
-      <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <MkTypLibCompatible>true</MkTypLibCompatible>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-      <TargetEnvironment>Win32</TargetEnvironment>
-      <TypeLibraryName>.\ReleaseDLL/tidydll.tlb</TypeLibraryName>
-      <HeaderFileName>
-      </HeaderFileName>
-    </Midl>
-    <ClCompile>
-      <Optimization>MaxSpeed</Optimization>
-      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-      <AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions>NDEBUG;WIN32;_WINDOWS;_USRDLL;TIDYDLL_EXPORTS;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <StringPooling>true</StringPooling>
-      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
-      <FunctionLevelLinking>true</FunctionLevelLinking>
-      <WarningLevel>Level3</WarningLevel>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-    </ClCompile>
-    <ResourceCompile>
-      <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <Culture>0x0409</Culture>
-    </ResourceCompile>
-    <Link>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-      <ModuleDefinitionFile>.\tidy.def</ModuleDefinitionFile>
-      <RandomizedBaseAddress>false</RandomizedBaseAddress>
-      <DataExecutionPrevention>
-      </DataExecutionPrevention>
-      <TargetMachine>MachineX86</TargetMachine>
-    </Link>
-    <Bscmake>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-    </Bscmake>
-  </ItemDefinitionGroup>
-  <ItemGroup>
-    <ClCompile Include="..\..\src\access.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\alloc.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\attrask.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\attrdict.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\attrget.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\attrs.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\buffio.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\clean.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\config.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\entities.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\fileio.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\istack.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\lexer.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\localize.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\mappedio.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\parser.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\pprint.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\streamio.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\tagask.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\tags.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\tidylib.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\tmbstr.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\utf8.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\win32tc.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\gdoc.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-  </ItemGroup>
-  <ItemGroup>
-    <None Include="tidy.def" />
-  </ItemGroup>
-  <ItemGroup>
-    <ClInclude Include="..\..\src\access.h" />
-    <ClInclude Include="..\..\src\attrdict.h" />
-    <ClInclude Include="..\..\src\attrs.h" />
-    <ClInclude Include="..\..\include\buffio.h" />
-    <ClInclude Include="..\..\src\clean.h" />
-    <ClInclude Include="..\..\src\config.h" />
-    <ClInclude Include="..\..\src\entities.h" />
-    <ClInclude Include="..\..\src\fileio.h" />
-    <ClInclude Include="..\..\src\forward.h" />
-    <ClInclude Include="..\..\src\lexer.h" />
-    <ClInclude Include="..\..\src\mappedio.h" />
-    <ClInclude Include="..\..\src\message.h" />
-    <ClInclude Include="..\..\src\parser.h" />
-    <ClInclude Include="..\..\include\platform.h" />
-    <ClInclude Include="..\..\src\pprint.h" />
-    <ClInclude Include="..\..\src\streamio.h" />
-    <ClInclude Include="..\..\src\tags.h" />
-    <ClInclude Include="..\..\src\tidy-int.h" />
-    <ClInclude Include="..\..\include\tidy.h" />
-    <ClInclude Include="..\..\include\tidyenum.h" />
-    <ClInclude Include="..\..\src\tmbstr.h" />
-    <ClInclude Include="..\..\src\utf8.h" />
-    <ClInclude Include="..\..\src\version.h" />
-    <ClInclude Include="..\..\src\win32tc.h" />
-    <ClInclude Include="..\..\src\gdoc.h" />
-  </ItemGroup>
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
-  <ImportGroup Label="ExtensionTargets">
-  </ImportGroup>
-</Project>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidylib.vcxproj b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidylib.vcxproj
deleted file mode 100644
index 7116907..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/msvc2010/tidylib.vcxproj
+++ /dev/null
@@ -1,311 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-  <ItemGroup Label="ProjectConfigurations">
-    <ProjectConfiguration Include="Debug|Win32">
-      <Configuration>Debug</Configuration>
-      <Platform>Win32</Platform>
-    </ProjectConfiguration>
-    <ProjectConfiguration Include="Release|Win32">
-      <Configuration>Release</Configuration>
-      <Platform>Win32</Platform>
-    </ProjectConfiguration>
-  </ItemGroup>
-  <PropertyGroup Label="Globals">
-    <ProjectGuid>{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}</ProjectGuid>
-    <RootNamespace>tidylib</RootNamespace>
-  </PropertyGroup>
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
-    <ConfigurationType>StaticLibrary</ConfigurationType>
-    <UseOfMfc>false</UseOfMfc>
-    <CharacterSet>MultiByte</CharacterSet>
-  </PropertyGroup>
-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
-    <ConfigurationType>StaticLibrary</ConfigurationType>
-    <UseOfMfc>false</UseOfMfc>
-    <CharacterSet>MultiByte</CharacterSet>
-  </PropertyGroup>
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
-  <ImportGroup Label="ExtensionSettings">
-  </ImportGroup>
-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
-    <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
-  </ImportGroup>
-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
-    <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
-  </ImportGroup>
-  <PropertyGroup Label="UserMacros" />
-  <PropertyGroup>
-    <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
-    <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
-    <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)$(MSBuildProjectName)\</IntDir>
-    <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
-    <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
-    <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
-    <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
-    <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
-    <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
-    <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">libtidy</TargetName>
-    <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">libtidy</TargetName>
-    <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
-    <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)$(MSBuildProjectName)\</IntDir>
-  </PropertyGroup>
-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
-    <ClCompile>
-      <Optimization>MaxSpeed</Optimization>
-      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-      <AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions>NDEBUG;_LIB;WIN32;SUPPORT_UTF16_ENCODINGS;SUPPORT_ASIAN_ENCODINGS;SUPPORT_ACCESSIBILITY_CHECKS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <StringPooling>true</StringPooling>
-      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-      <FunctionLevelLinking>true</FunctionLevelLinking>
-      <WarningLevel>Level4</WarningLevel>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-    </ClCompile>
-    <ResourceCompile>
-      <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <Culture>0x0409</Culture>
-    </ResourceCompile>
-    <Lib>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-    </Lib>
-    <Bscmake>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-    </Bscmake>
-  </ItemDefinitionGroup>
-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
-    <ClCompile>
-      <Optimization>Disabled</Optimization>
-      <AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions>_DEBUG;_WIN32;_LIB;WIN32;SUPPORT_UTF16_ENCODINGS;SUPPORT_ASIAN_ENCODINGS;SUPPORT_ACCESSIBILITY_CHECKS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <MinimalRebuild>true</MinimalRebuild>
-      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
-      <DisableLanguageExtensions>true</DisableLanguageExtensions>
-      <WarningLevel>Level4</WarningLevel>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
-      <UndefinePreprocessorDefinitions>WINDOWS;%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-    </ClCompile>
-    <ResourceCompile>
-      <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <Culture>0x0409</Culture>
-    </ResourceCompile>
-    <Lib>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-    </Lib>
-    <Bscmake>
-      <SuppressStartupBanner>true</SuppressStartupBanner>
-    </Bscmake>
-  </ItemDefinitionGroup>
-  <ItemGroup>
-    <ClCompile Include="..\..\src\access.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\alloc.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\attrask.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\attrdict.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\attrget.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\attrs.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\buffio.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\clean.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\config.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\entities.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\fileio.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\istack.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\lexer.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\localize.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\mappedio.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <DisableLanguageExtensions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</DisableLanguageExtensions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\parser.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\pprint.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\streamio.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\tagask.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\tags.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\tidylib.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\tmbstr.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\utf8.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\win32tc.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-    <ClCompile Include="..\..\src\gdoc.c">
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-      <UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
-      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-      <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
-    </ClCompile>
-  </ItemGroup>
-  <ItemGroup>
-    <ClInclude Include="..\..\src\access.h" />
-    <ClInclude Include="..\..\src\attrdict.h" />
-    <ClInclude Include="..\..\src\attrs.h" />
-    <ClInclude Include="..\..\include\buffio.h" />
-    <ClInclude Include="..\..\src\clean.h" />
-    <ClInclude Include="..\..\src\config.h" />
-    <ClInclude Include="..\..\src\entities.h" />
-    <ClInclude Include="..\..\src\fileio.h" />
-    <ClInclude Include="..\..\src\forward.h" />
-    <ClInclude Include="..\..\src\lexer.h" />
-    <ClInclude Include="..\..\src\mappedio.h" />
-    <ClInclude Include="..\..\src\message.h" />
-    <ClInclude Include="..\..\src\parser.h" />
-    <ClInclude Include="..\..\include\platform.h" />
-    <ClInclude Include="..\..\src\pprint.h" />
-    <ClInclude Include="..\..\src\streamio.h" />
-    <ClInclude Include="..\..\src\tags.h" />
-    <ClInclude Include="..\..\src\tidy-int.h" />
-    <ClInclude Include="..\..\include\tidy.h" />
-    <ClInclude Include="..\..\include\tidyenum.h" />
-    <ClInclude Include="..\..\src\tmbstr.h" />
-    <ClInclude Include="..\..\src\utf8.h" />
-    <ClInclude Include="..\..\src\version.h" />
-    <ClInclude Include="..\..\src\win32tc.h" />
-    <ClInclude Include="..\..\src\gdoc.h" />
-  </ItemGroup>
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
-  <ImportGroup Label="ExtensionTargets">
-  </ImportGroup>
-</Project>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/readme.txt b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/readme.txt
deleted file mode 100644
index af94f18..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/readme.txt
+++ /dev/null
@@ -1,40 +0,0 @@
-Tidy Build Files
-
-Each subdirectory contains input files to a selected
-build system for TidyLib and the command line driver.
-Some build systems are cross-platform (gmake, autoconf),
-others (msvc) are platform specific.  For details
-on any given build system, see the readme file for
-that system.
-
-Directory  System                Comments
----------  --------------------  --------------------------
-gmake      GNU Make              Used for "official" builds
-
-gnuauto    GNU AutoConf          Supports shared lib builds
-
-msvc       MS Visual C++ v6      Win32 only
-
-msvc2010   MS Visual Studio 2010 win32 only
-
-rpm        Script for packages   For Linux distribution supporting rpm
-
-
-Common Build Options
-
-There are some basic build options for TidyLib, independent
-of platform and build system.  Typically, these options can
-be enabled or disabled by setting a macro value within the
-Makefile or its equivalent.  An option may be disabled by
-setting its value to "0".  Enable by setting to "1".  Again,
-consult the directions for each build system for details
-on how to enable/disable each option.
-
-Option                        Default   Description
-----------------------------  --------  ---------------------------------
-DMALLOC                       Disabled  Use dmalloc for memory debugging
-SUPPORT_ACCESSIBILITY_CHECKS  Enabled   Support W3C WAI checks
-SUPPORT_UTF16_ENCODINGS       Enabled   Support Unicode documents
-SUPPORT_ASIAN_ENCODINGS       Enabled   Support Big5 and ShiftJIS docs
-
-
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/rpm/readme.txt b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/rpm/readme.txt
deleted file mode 100644
index eb90528..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/rpm/readme.txt
+++ /dev/null
@@ -1,40 +0,0 @@
-# Script for Building tidy rpm packages
-
-
-# To build the RPM packages for tidy on Redhat and other distros which support rpm.
-# For making Debian packages, first create rpm package and then generate
-# debian package by command "rpm2deb filename"
-
-
-
-The steps are as follows:
-
-
-1. Let's suppose TIDY_VERSION you are building is 02October2003
-
-
-2. Unpack original source tree
-        tar zxvf tidy_src.tgz
-   This will extract to a directory called tidy
-
-
-3. mv tidy tidy-02October2003
-   Edit the tidy.spec file inside directory tidy-02October2003
-   and make sure the Version variable is changed to 02October2003.
-   Also edit the Makefile and change prefix to "exactly" say this:
-        runinst_prefix=${RPMTMP}
-        devinst_prefix=${RPMTMP}
-
-
-4. tar zcvf tidy-02October2003.tgz tidy-02October2003
-
-
-5. rpmbuild -ta tidy-02October2003.tgz
-
-
-6. rm tidy-02October2003.tgz
-
-
-7. To derive Debian package for tidy run command on created rpm packages
-        rpm2deb tidy-02October2003-1.rpm
-
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/rpm/tidy.spec b/DocFormats/platform/3rdparty/w3c-tidy-html5/build/rpm/tidy.spec
deleted file mode 100644
index aa76c91..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/build/rpm/tidy.spec
+++ /dev/null
@@ -1,148 +0,0 @@
-# RPM spec file for tidy
-#
-#    (c) 2006 (W3C) MIT, ERCIM, Keio University
-#    See tidy.h for the copyright notice.
-#
-#  Contributing Author(s):
-#     Sierk Bornemann <bornemann@users.sourceforge.net>
-#
-# norootforbuild
-# neededforbuild  doxygen libxslt libtool
-
-BuildRequires: doxygen libxslt libtool 
-
-Name:                 tidy
-Version:              1.0
-Release:              YYMMDD
-%define docrelease    YYMMDD
-Summary:              Utility to clean up and pretty print HTML/XHTML/XML
-Group:                Applications/Tools
-License:              W3C Software License, MIT Licence, Other License(s), see package
-Autoreqprov:          on
-URL:                  http://tidy.sourceforge.net/
-Source0:              http://sourceforge.net/cvs/?group_id=27659
-Source1:              http://tidy.sourceforge.net/src/tidy_src.tgz
-Source2:              http://tidy.sourceforge.net/docs/tidy_docs.tgz
-BuildRoot:            %{_tmppath}/%{name}-%{version}-%{release}-build
-
-
-%description
-When editing HTML it's easy to make mistakes. Wouldn't it be nice if
-there was a simple way to fix these mistakes automatically and tidy up
-sloppy editing into nicely layed out markup? Well now there is! Dave
-Raggett's HTML TIDY is a free utility for doing just that. It also
-works great on the atrociously hard to read markup generated by
-specialized HTML editors and conversion tools, and can help you
-identify where you need to pay further attention on making your pages
-more accessible to people with disabilities.
-
-Tidy is able to fix up a wide range of problems and to bring to your
-attention things that you need to work on yourself. Each item found is
-listed with the line number and column so that you can see where the
-problem lies in your markup. Tidy won't generate a cleaned up version
-when there are problems that it can't be sure of how to handle. These
-are logged as "errors" rather than "warnings".
-
-
-Authors:
---------
-
-    Tidy was written by Dave Raggett <dsr@w3.org> and is now maintained 
-    and developed by the Tidy team at http://tidy.sourceforge.net/.
-
-
-%package     -n libtidy
-Summary:        Shared library for tidy
-Group:          Development/Libraries
-Autoreqprov:    on
-
-%description -n libtidy
-
-This package contains the library needed to run programs dynamically
-linked with tidy.
-
-
-%package     -n libtidy-devel
-Summary:        Development files for tidy
-Group:          Development/Libraries
-Requires:       libtidy = %{version}-%{release}
-Autoreqprov:    on
-
-
-%description -n libtidy-devel
-
-This package contains the headers, the shared libraries and the API 
-documentation which programmers will need to develop applications based on 
-tidy.
-
-%debug_package
-%prep
-%setup -q -n %{name} -b 1 
-mv htmldoc/doxygen.cfg Doxyfile
-
-
-%build
-export CFLAGS="$RPM_OPT_FLAGS"
-/bin/sh build/gnuauto/setup.sh
-
-%configure --disable-dependency-tracking \
-           --includedir=%{_includedir}/%{name}
-make %{?_smp_mflags} all
-make -C build/gmake/ doc
-doxygen
-
-
-%install
-rm -rf $RPM_BUILD_ROOT _api
-make install DESTDIR=$RPM_BUILD_ROOT
-# Manpage
-install -Dpm 644 htmldoc/tidy.1 $RPM_BUILD_ROOT%{_mandir}/man1/tidy.1
-# Quick Reference
-install -Dpm 644 htmldoc/quickref.html $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}/quickref.html
-# Move API directory out of the way
-mv htmldoc/api _api
-
-
-%clean
-if ! test -f /.buildenv; then
-    rm -rf $RPM_BUILD_ROOT;
-fi
-
-
-%post -n lib%{name} -p /sbin/ldconfig
-
-%postun -n lib%{name} -p /sbin/ldconfig
-
-
-%files
-%defattr(-, root, root)
-%doc htmldoc/*
-%{_bindir}/tidy
-%{_bindir}/tab2space
-%{_mandir}/man1/tidy.1*
-
-
-%files -n libtidy
-%defattr(-, root, root)
-%doc htmldoc/license.html
-%{_libdir}/libtidy*.so.*
-
-
-%files -n libtidy-devel
-%defattr(-, root, root)
-%doc _api/*
-%{_includedir}/%{name}/*.h
-%{_libdir}/libtidy.so
-%{_libdir}/libtidy.a
-%exclude %{_libdir}/libtidy.la
-
-
-%changelog -n tidy
-* Thu Feb 22 2006 - Sierk Bornemann <bornemann@sourceforge.net>
-  Rewritten RPM Spec file:
-  - respects filesystem layout of current FHS-compliant linux distributions.
-  - respects current tidy Makefile and
-    creation of tidy docs (XSL transformation from tidy's XML output).
-
-* Mon Oct 25 2003 - Al Dev (Alavoor Vasudevan) <alavoor[at]yahoo.com>
-  - Initial version of %{name} rpm
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/console/tab2space.c b/DocFormats/platform/3rdparty/w3c-tidy-html5/console/tab2space.c
deleted file mode 100644
index 2cdc434..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/console/tab2space.c
+++ /dev/null
@@ -1,362 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include "platform.h"
-
-#define true       1
-#define false      0
-#define TABSIZE    4
-
-#define DOS_CRLF   0
-#define UNIX_LF    1
-#define MAC_CR     2
-
-typedef struct
-{
-    Bool pushed;
-    int tabs;
-    int curcol;
-    int lastcol;
-    int maxcol;
-    int curline;
-    int pushed_char;
-    uint size;
-    uint length;
-    char *buf;
-    FILE *fp;
-} Stream;
-
-static int tabsize = TABSIZE;
-static int endline = DOS_CRLF;
-static Bool tabs = false;
-
-/*
- Memory allocation functions vary from one environment to
- the next, and experience shows that wrapping the local
- mechanisms up provides for greater flexibility and allows
- out of memory conditions to be detected in one place.
-*/
-void *MemAlloc(size_t size)
-{
-    void *p;
-
-    p = malloc(size);
-
-    if (!p)
-    {
-        fprintf(stderr, "***** Out of memory! *****\n");
-        exit(1);
-    }
-
-    return p;
-}
-
-void *MemRealloc(void *old, size_t size)
-{
-    void *p;
-
-    p = realloc(old, size);
-
-    if (!p)
-    {
-        fprintf(stderr, "***** Out of memory! *****\n");
-        return NULL;
-    }
-
-    return p;
-}
-
-void MemFree(void *p)
-{
-    free(p);
-    p = NULL;
-}
-
-static Stream *NewStream(FILE *fp)
-{
-    Stream *in;
-
-    in = (Stream *)MemAlloc(sizeof(Stream));
-
-    memset(in, 0, sizeof(Stream));
-    in->fp = fp;
-    return in;
-}
-
-static void FreeStream(Stream *in)
-{
-    if (in->buf)
-        MemFree(in->buf);
-
-    MemFree(in);
-}
-
-static void AddByte(Stream *in, uint c)
-{
-    if (in->size + 1 >= in->length)
-    {
-        while (in->size + 1 >= in->length)
-        {
-            if (in->length == 0)
-                in->length = 8192;
-            else
-                in->length = in->length * 2;
-        }
-
-        in->buf = (char *)MemRealloc(in->buf, in->length*sizeof(char));
-    }
-
-    in->buf[in->size++] = (char)c;
-    in->buf[in->size] = '\0';  /* debug */
-}
-
-
-
-/*
-  Read a character from a stream, keeping track
-  of lines, columns etc. This is used for parsing
-  markup and plain text etc. A single level
-  pushback is allowed with UngetChar(c, in).
-  Returns EndOfStream if there's nothing more to read.
-*/
-static int ReadChar(Stream *in)
-{
-    int c;
-
-    if (in->pushed)
-    {
-        in->pushed = false;
-
-        if (in->pushed_char == '\n')
-            in->curline--;
-
-        return in->pushed_char;
-    }
-
-    in->lastcol = in->curcol;
-
-    /* expanding tab ? */
-    if (in->tabs > 0)
-    {
-        in->curcol++;
-        in->tabs--;
-        return ' ';
-    }
-    
-    /* Else go on with normal buffer: */
-    for (;;)
-    {
-        c = getc(in->fp);
-
-        /* end of file? */
-        if (c == EOF)
-            break;
-
-        /* coerce \r\n  and isolated \r as equivalent to \n : */
-        if (c == '\r')
-        {
-            c = getc(in->fp);
-
-            if (c != '\n')
-                ungetc(c, in->fp);
-
-            c = '\n';
-        }
-
-        if (c == '\n')
-        {
-            if (in->maxcol < in->curcol)
-                in->maxcol = in->curcol;
-
-            in->curcol = 1;
-            in->curline++;
-            break;
-        }
-
-        if (c == '\t')
-        {
-            if (tabs)
-              in->curcol += tabsize - ((in->curcol - 1) % tabsize);
-            else /* expand to spaces */
-            {
-                in->tabs = tabsize - ((in->curcol - 1) % tabsize) - 1;
-                in->curcol++;
-                c = ' ';
-            }
-
-            break;
-        }
-
-        if (c == '\033')
-            break;
-
-        /* strip control characters including '\r' */
-
-        if (0 < c && c < 32)
-            continue;
-
-        in->curcol++;
-        break;
-    }
-
-    return c;
-}
-
-static Stream *ReadFile(FILE *fin)
-{
-    int c;
-    Stream *in  = NewStream(fin);
-
-    while ((c = ReadChar(in)) >= 0)
-        AddByte(in, (uint)c);
-
-    return in;
-}
-
-static void WriteFile(Stream *in, FILE *fout)
-{
-    int i, c;
-    char *p;
-
-    i = in->size;
-    p = in->buf;
-
-    while (i--)
-    {
-        c = *p++;
-
-        if (c == '\n')
-        {
-            if (endline == DOS_CRLF)
-            {
-                putc('\r', fout);
-                putc('\n', fout);
-            }
-            else if (endline == UNIX_LF)
-                putc('\n', fout);
-            else if (endline == MAC_CR)
-                putc('\r', fout);
-
-            continue;
-        }
-
-        putc(c, fout);
-    }
-}
-
-static void HelpText(FILE *errout, char *prog)
-{
-    fprintf(errout, "%s: [options] [infile [outfile]] ...\n", prog);
-    fprintf(errout, "Utility to expand tabs and ensure consistent line endings\n");
-    fprintf(errout, "options for tab2space vers: 6th February 2003\n");
-    fprintf(errout, "  -help or -h     display this help message\n");
-    fprintf(errout, "  -dos  or -crlf  set line ends to CRLF (PC-DOS/Windows - default)\n");
-    fprintf(errout, "  -mac  or -cr    set line ends to CR (classic Mac OS)\n");
-    fprintf(errout, "  -unix or -lf    set line ends to LF (Unix)\n");
-    fprintf(errout, "  -tabs           preserve tabs, e.g. for Makefile\n");
-    fprintf(errout, "  -t<n>           set tabs to <n> (default is 4) spaces\n");
-    fprintf(errout, "\nNote this utility doesn't map spaces to tabs!\n");
-}
-
-int main(int argc, char **argv)
-{
-    char const *infile, *outfile;
-    char *prog;
-    FILE *fin, *fout;
-    Stream *in = NULL;
-
-    prog = argv[0];
-
-    while (argc > 0)
-    {
-        if (argc > 1 && argv[1][0] == '-')
-        {
-            if (strcmp(argv[1], "-help") == 0 || argv[1][1] == 'h')
-            {
-                HelpText(stdout, prog);
-                return 1;
-            }
-
-            if (strcmp(argv[1], "-dos") == 0 ||
-                strcmp(argv[1], "-crlf") == 0)
-                 endline = DOS_CRLF;
-
-            else if (strcmp(argv[1], "-mac") == 0 ||
-                strcmp(argv[1], "-cr") == 0)
-                endline = MAC_CR;
-
-            else if (strcmp(argv[1], "-unix") == 0 ||
-                strcmp(argv[1], "-lf") == 0)
-                endline = UNIX_LF;
-
-            else if (strcmp(argv[1], "-tabs") == 0)
-                tabs = true;
-
-            else if (strncmp(argv[1], "-t", 2) == 0)
-                sscanf(argv[1]+2, "%d", &tabsize);
-
-            --argc;
-            ++argv;
-            continue;
-        }
-
-        if (argc > 1)
-        {
-            infile = argv[1];
-            fin = fopen(infile, "rb");
-        }
-        else
-        {
-            infile = "stdin";
-            fin = stdin;
-        }
-
-        if (argc > 2)
-        {
-            outfile = argv[2];
-            fout = NULL;
-            --argc;
-            ++argv;
-        }
-        else
-        {
-            outfile = "stdout";
-            fout = stdout;
-        }
-
-        if (fin)
-        {
-            in = ReadFile(fin);
-
-            if (fin != stdin)
-                fclose(fin);
-            
-            if (fout != stdout)
-               fout = fopen(outfile, "wb");
-            
-            if (fout)
-            {
-               WriteFile(in, fout);
-                
-               if (fout != stdout)
-                  fclose(fout);
-            }
-            else
-                fprintf(stderr, "%s - can't open \"%s\" for writing\n", prog, outfile);
-
-            FreeStream(in);
-        }
-        else
-            fprintf(stderr, "%s - can't open \"%s\" for reading\n", prog, infile);
-
-        --argc;
-        ++argv;
-        
-        if (argc <= 1)
-            break;
-    }
-
-    return 0;
-}
-
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/console/tidy.c b/DocFormats/platform/3rdparty/w3c-tidy-html5/console/tidy.c
deleted file mode 100644
index b1376a8..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/console/tidy.c
+++ /dev/null
@@ -1,1346 +0,0 @@
-/*
-  tidy.c - HTML TidyLib command line driver
-
-  Copyright (c) 1998-2008 World Wide Web Consortium
-  (Massachusetts Institute of Technology, European Research 
-  Consortium for Informatics and Mathematics, Keio University).
-  All Rights Reserved.
-
-*/
-
-#include "tidy.h"
-
-static FILE* errout = NULL;  /* set to stderr */
-/* static FILE* txtout = NULL; */  /* set to stdout */
-
-static Bool samefile( ctmbstr filename1, ctmbstr filename2 )
-{
-#if FILENAMES_CASE_SENSITIVE
-    return ( strcmp( filename1, filename2 ) == 0 );
-#else
-    return ( strcasecmp( filename1, filename2 ) == 0 );
-#endif
-}
-
-static void outOfMemory(void)
-{
-    fprintf(stderr,"Out of memory. Bailing out.");
-    exit(1);
-}
-
-static const char *cutToWhiteSpace(const char *s, uint offset, char *sbuf)
-{
-    if (!s)
-    {
-        sbuf[0] = '\0';
-        return NULL;
-    }
-    else if (strlen(s) <= offset)
-    {
-        strcpy(sbuf,s);
-        sbuf[offset] = '\0';
-        return NULL;
-    }
-    else
-    {
-        uint j, l, n;
-        j = offset;
-        while(j && s[j] != ' ')
-            --j;
-        l = j;
-        n = j+1;
-        /* no white space */
-        if (j==0)
-        {
-            l = offset;
-            n = offset;
-        }
-        strncpy(sbuf,s,l);
-        sbuf[l] = '\0';
-        return s+n;
-    }
-}
-
-static void print2Columns( const char* fmt, uint l1, uint l2,
-                           const char *c1, const char *c2 )
-{
-    const char *pc1=c1, *pc2=c2;
-    char *c1buf = (char *)malloc(l1+1);
-    char *c2buf = (char *)malloc(l2+1);
-    if (!c1buf) outOfMemory();
-    if (!c2buf) outOfMemory();
-
-    do
-    {
-        pc1 = cutToWhiteSpace(pc1, l1, c1buf);
-        pc2 = cutToWhiteSpace(pc2, l2, c2buf);
-        printf(fmt,
-               c1buf[0]!='\0'?c1buf:"",
-               c2buf[0]!='\0'?c2buf:"");
-    } while (pc1 || pc2);
-    free(c1buf);
-    free(c2buf);
-}
-
-static void print3Columns( const char* fmt, uint l1, uint l2, uint l3,
-                           const char *c1, const char *c2, const char *c3 )
-{
-    const char *pc1=c1, *pc2=c2, *pc3=c3;
-    char *c1buf = (char *)malloc(l1+1);
-    char *c2buf = (char *)malloc(l2+1);
-    char *c3buf = (char *)malloc(l3+1);
-    if (!c1buf) outOfMemory();
-    if (!c2buf) outOfMemory();
-    if (!c3buf) outOfMemory();
-
-    do
-    {
-        pc1 = cutToWhiteSpace(pc1, l1, c1buf);
-        pc2 = cutToWhiteSpace(pc2, l2, c2buf);
-        pc3 = cutToWhiteSpace(pc3, l3, c3buf);
-        printf(fmt,
-               c1buf[0]!='\0'?c1buf:"",
-               c2buf[0]!='\0'?c2buf:"",
-               c3buf[0]!='\0'?c3buf:"");
-    } while (pc1 || pc2 || pc3);
-    free(c1buf);
-    free(c2buf);
-    free(c3buf);
-}
-
-static const char helpfmt[] = " %-19.19s %-58.58s\n";
-static const char helpul[]
-        = "-----------------------------------------------------------------";
-static const char fmt[] = "%-27.27s %-9.9s  %-40.40s\n";
-static const char valfmt[] = "%-27.27s %-9.9s %-1.1s%-39.39s\n";
-static const char ul[]
-        = "=================================================================";
-
-typedef enum
-{
-  CmdOptFileManip,
-  CmdOptCatFIRST = CmdOptFileManip,
-  CmdOptProcDir,
-  CmdOptCharEnc,
-  CmdOptMisc,
-  CmdOptCatLAST
-} CmdOptCategory;
-
-static const struct {
-    ctmbstr mnemonic;
-    ctmbstr name;
-} cmdopt_catname[] = {
-    { "file-manip", "File manipulation" },
-    { "process-directives", "Processing directives" },
-    { "char-encoding", "Character encodings" },
-    { "misc", "Miscellaneous" }
-};
-
-typedef struct {
-    ctmbstr name1;      /**< Name */
-    ctmbstr desc;       /**< Description */
-    ctmbstr eqconfig;   /**< Equivalent configuration option */
-    CmdOptCategory cat; /**< Category */
-    ctmbstr name2;      /**< Name */
-    ctmbstr name3;      /**< Name */
-} CmdOptDesc;
-
-static const CmdOptDesc cmdopt_defs[] =  {
-    { "-output <file>",
-      "write output to the specified <file>",
-      "output-file: <file>", CmdOptFileManip, "-o <file>" },
-    { "-config <file>",
-      "set configuration options from the specified <file>",
-      NULL, CmdOptFileManip },
-    { "-file <file>",
-      "write errors and warnings to the specified <file>",
-      "error-file: <file>", CmdOptFileManip, "-f <file>" },
-    { "-modify",
-      "modify the original input files",
-      "write-back: yes", CmdOptFileManip, "-m" },
-    { "-indent",
-      "indent element content",
-      "indent: auto", CmdOptProcDir, "-i" },
-    { "-wrap <column>",
-      "wrap text at the specified <column>"
-      ". 0 is assumed if <column> is missing. "
-      "When this option is omitted, the default of the configuration option "
-      "\"wrap\" applies.",
-      "wrap: <column>", CmdOptProcDir, "-w <column>" },
-    { "-upper",
-      "force tags to upper case",
-      "uppercase-tags: yes", CmdOptProcDir, "-u" },
-    { "-clean",
-      "replace FONT, NOBR and CENTER tags by CSS",
-      "clean: yes", CmdOptProcDir, "-c" },
-    { "-bare",
-      "strip out smart quotes and em dashes, etc.",
-      "bare: yes", CmdOptProcDir, "-b" },
-    { "-gdoc",
-      "produce clean version of html exported by google docs",
-      "gdoc: yes", CmdOptProcDir, "-g" },
-    { "-numeric",
-      "output numeric rather than named entities",
-      "numeric-entities: yes", CmdOptProcDir, "-n" },
-    { "-errors",
-      "show only errors and warnings",
-      "markup: no", CmdOptProcDir, "-e" },
-    { "-quiet",
-      "suppress nonessential output",
-      "quiet: yes", CmdOptProcDir, "-q" },
-    { "-omit",
-      "omit optional start tags and end tags",
-      "omit-optional-tags: yes", CmdOptProcDir },
-    { "-xml",
-      "specify the input is well formed XML",
-      "input-xml: yes", CmdOptProcDir },
-    { "-asxml",
-      "convert HTML to well formed XHTML",
-      "output-xhtml: yes", CmdOptProcDir, "-asxhtml" },
-    { "-ashtml",
-      "force XHTML to well formed HTML",
-      "output-html: yes", CmdOptProcDir },
-#if SUPPORT_ACCESSIBILITY_CHECKS
-    { "-access <level>",
-      "do additional accessibility checks (<level> = 0, 1, 2, 3)"
-      ". 0 is assumed if <level> is missing.",
-      "accessibility-check: <level>", CmdOptProcDir },
-#endif
-    { "-raw",
-      "output values above 127 without conversion to entities",
-      NULL, CmdOptCharEnc },
-    { "-ascii",
-      "use ISO-8859-1 for input, US-ASCII for output",
-      NULL, CmdOptCharEnc },
-    { "-latin0",
-      "use ISO-8859-15 for input, US-ASCII for output",
-      NULL, CmdOptCharEnc },
-    { "-latin1",
-      "use ISO-8859-1 for both input and output",
-      NULL, CmdOptCharEnc },
-#ifndef NO_NATIVE_ISO2022_SUPPORT
-    { "-iso2022",
-      "use ISO-2022 for both input and output",
-      NULL, CmdOptCharEnc },
-#endif
-    { "-utf8",
-      "use UTF-8 for both input and output",
-      NULL, CmdOptCharEnc },
-    { "-mac",
-      "use MacRoman for input, US-ASCII for output",
-      NULL, CmdOptCharEnc },
-    { "-win1252",
-      "use Windows-1252 for input, US-ASCII for output",
-      NULL, CmdOptCharEnc },
-    { "-ibm858",
-      "use IBM-858 (CP850+Euro) for input, US-ASCII for output",
-      NULL, CmdOptCharEnc },
-#if SUPPORT_UTF16_ENCODINGS
-    { "-utf16le",
-      "use UTF-16LE for both input and output",
-      NULL, CmdOptCharEnc },
-    { "-utf16be",
-      "use UTF-16BE for both input and output",
-      NULL, CmdOptCharEnc },
-    { "-utf16",
-      "use UTF-16 for both input and output",
-      NULL, CmdOptCharEnc },
-#endif
-#if SUPPORT_ASIAN_ENCODINGS /* #431953 - RJ */
-    { "-big5",
-      "use Big5 for both input and output",
-      NULL, CmdOptCharEnc },
-    { "-shiftjis",
-      "use Shift_JIS for both input and output",
-      NULL, CmdOptCharEnc },
-    { "-language <lang>",
-      "set the two-letter language code <lang> (for future use)",
-      "language: <lang>", CmdOptCharEnc },
-#endif
-    { "-version",
-      "show the version of Tidy",
-      NULL, CmdOptMisc, "-v" },
-    { "-help",
-      "list the command line options",
-      NULL, CmdOptMisc, "-h", "-?" },
-    { "-xml-help",
-      "list the command line options in XML format",
-      NULL, CmdOptMisc },
-    { "-help-config",
-      "list all configuration options",
-      NULL, CmdOptMisc },
-    { "-xml-config",
-      "list all configuration options in XML format",
-      NULL, CmdOptMisc },
-    { "-show-config",
-      "list the current configuration settings",
-      NULL, CmdOptMisc },
-    { NULL, NULL, NULL, CmdOptMisc }
-};
-
-static tmbstr get_option_names( const CmdOptDesc* pos )
-{
-    tmbstr name;
-    uint len = strlen(pos->name1);
-    if (pos->name2)
-        len += 2+strlen(pos->name2);
-    if (pos->name3)
-        len += 2+strlen(pos->name3);
-
-    name = (tmbstr)malloc(len+1);
-    if (!name) outOfMemory();
-    strcpy(name, pos->name1);
-    if (pos->name2)
-    {
-        strcat(name, ", ");
-        strcat(name, pos->name2);
-    }
-    if (pos->name3)
-    {
-        strcat(name, ", ");
-        strcat(name, pos->name3);
-    }
-    return name;
-}
-
-static tmbstr get_escaped_name( ctmbstr name )
-{
-    tmbstr escpName;
-    char aux[2];
-    uint len = 0;
-    ctmbstr c;
-    for(c=name; *c!='\0'; ++c)
-        switch(*c)
-        {
-        case '<':
-        case '>':
-            len += 4;
-            break;
-        case '"':
-            len += 6;
-            break;
-        default:
-            len += 1;
-            break;
-        }
-
-    escpName = (tmbstr)malloc(len+1);
-    if (!escpName) outOfMemory();
-    escpName[0] = '\0';
-
-    aux[1] = '\0';
-    for(c=name; *c!='\0'; ++c)
-        switch(*c)
-        {
-        case '<':
-            strcat(escpName, "&lt;");
-            break;
-        case '>':
-            strcat(escpName, "&gt;");
-            break;
-        case '"':
-            strcat(escpName, "&quot;");
-            break;
-        default:
-            aux[0] = *c;
-            strcat(escpName, aux);
-            break;
-        }
-
-    return escpName;
-}
-
-static void print_help_option( void )
-{
-    CmdOptCategory cat = CmdOptCatFIRST;
-    const CmdOptDesc* pos = cmdopt_defs;
-
-    for( cat=CmdOptCatFIRST; cat!=CmdOptCatLAST; ++cat)
-    {
-        size_t len =  strlen(cmdopt_catname[cat].name);
-        printf("%s\n", cmdopt_catname[cat].name );
-        printf("%*.*s\n", (int)len, (int)len, helpul );
-        for( pos=cmdopt_defs; pos->name1; ++pos)
-        {
-            tmbstr name;
-            if (pos->cat != cat)
-                continue;
-            name = get_option_names( pos );
-            print2Columns( helpfmt, 19, 58, name, pos->desc );
-            free(name);
-        }
-        printf("\n");
-    }
-}
-
-static void print_xml_help_option_element( ctmbstr element, ctmbstr name )
-{
-    tmbstr escpName;
-    if (!name)
-        return;
-    printf("  <%s>%s</%s>\n", element, escpName = get_escaped_name(name),
-           element);
-    free(escpName);
-}
-
-static void print_xml_help_option( void )
-{
-    const CmdOptDesc* pos = cmdopt_defs;
-
-    for( pos=cmdopt_defs; pos->name1; ++pos)
-    {
-        printf(" <option class=\"%s\">\n", cmdopt_catname[pos->cat].mnemonic );
-        print_xml_help_option_element("name", pos->name1);
-        print_xml_help_option_element("name", pos->name2);
-        print_xml_help_option_element("name", pos->name3);
-        print_xml_help_option_element("description", pos->desc);
-        if (pos->eqconfig)
-            print_xml_help_option_element("eqconfig", pos->eqconfig);
-        else
-            printf("  <eqconfig />\n");
-        printf(" </option>\n");
-    }
-}
-
-static void xml_help( void )
-{
-    printf( "<?xml version=\"1.0\"?>\n"
-            "<cmdline version=\"%s\">\n", tidyReleaseDate());
-    print_xml_help_option();
-    printf( "</cmdline>\n" );
-}
-
-static void help( ctmbstr prog )
-{
-    printf( "%s [option...] [file...] [option...] [file...]\n", prog );
-    printf( "Utility to clean up and pretty print HTML/XHTML/XML\n");
-    printf( "\n");
-
-    printf( "This is an HTML5-aware experimental fork of HTML Tidy.\n");
-    printf( "%s\n", tidyReleaseDate() );
-    printf( "\n");
-
-#ifdef PLATFORM_NAME
-    printf( "Options for HTML Tidy for %s:\n", PLATFORM_NAME );
-#else
-    printf( "Options for HTML Tidy:\n");
-#endif
-    printf( "\n");
-
-    print_help_option();
-
-    printf( "Use --optionX valueX for any configuration option \"optionX\" with argument\n"
-            "\"valueX\". For a list of the configuration options, use \"-help-config\" or refer\n"
-            "to the man page.\n\n");
-
-    printf( "Input/Output default to stdin/stdout respectively.\n");
-    printf( "\n");
-    printf( "Single letter options apart from -f may be combined\n");
-    printf( "as in:  tidy -f errs.txt -imu foo.html\n");
-    printf( "\n");
-    printf( "For more information on this HTML5-aware experimental fork of Tidy,\n" );
-    printf( "see http://w3c.github.com/tidy-html5/\n" );
-    printf( "\n");
-    printf( "For more information on HTML, see the following:\n" );
-    printf( "\n");
-    printf( "  HTML: Edition for Web Authors (the latest HTML specification)\n");
-    printf( "  http://dev.w3.org/html5/spec-author-view\n" );
-    printf( "\n");
-    printf( "  HTML: The Markup Language (an HTML language reference)\n" );
-    printf( "  http://dev.w3.org/html5/markup/\n" );
-    printf( "\n");
-    printf( "File bug reports at https://github.com/w3c/tidy-html5/issues/\n" );
-    printf( "or send questions and comments to html-tidy@w3.org\n" );
-    printf( "\n");
-    printf( "Validate your HTML documents using the W3C Nu Markup Validator:\n" );
-    printf( "\n");
-    printf( "  http://validator.w3.org/nu/" );
-    printf( "\n");
-}
-
-static Bool isAutoBool( TidyOption topt )
-{
-    TidyIterator pos;
-    ctmbstr def;
-
-    if ( tidyOptGetType( topt ) != TidyInteger)
-        return no;
-
-    pos = tidyOptGetPickList( topt );
-    while ( pos )
-    {
-        def = tidyOptGetNextPick( topt, &pos );
-        if (0==strcmp(def,"yes"))
-           return yes;
-    }
-    return no;
-}
-
-static
-ctmbstr ConfigCategoryName( TidyConfigCategory id )
-{
-    switch( id )
-    {
-    case TidyMarkup:
-        return "markup";
-    case TidyDiagnostics:
-        return "diagnostics";
-    case TidyPrettyPrint:
-        return "print";
-    case TidyEncoding:
-        return "encoding";
-    case TidyMiscellaneous:
-        return "misc";
-    }
-    fprintf(stderr, "Fatal error: impossible value for id='%d'.\n", (int)id);
-    assert(0);
-    abort();
-}
-
-/* Description of an option */
-typedef struct {
-    ctmbstr name;  /**< Name */
-    ctmbstr cat;   /**< Category */
-    ctmbstr type;  /**< "String, ... */
-    ctmbstr vals;  /**< Potential values. If NULL, use an external function */
-    ctmbstr def;   /**< default */
-    tmbchar tempdefs[80]; /**< storage for default such as integer */
-    Bool haveVals; /**< if yes, vals is valid */
-} OptionDesc;
-
-typedef void (*OptionFunc)( TidyDoc, TidyOption, OptionDesc * );
-
-
-/* Create description "d" related to "opt" */
-static
-void GetOption( TidyDoc tdoc, TidyOption topt, OptionDesc *d )
-{
-    TidyOptionId optId = tidyOptGetId( topt );
-    TidyOptionType optTyp = tidyOptGetType( topt );
-
-    d->name = tidyOptGetName( topt );
-    d->cat = ConfigCategoryName( tidyOptGetCategory( topt ) );
-    d->vals = NULL;
-    d->def = NULL;
-    d->haveVals = yes;
-
-    /* Handle special cases first.
-     */
-    switch ( optId )
-    {
-    case TidyDuplicateAttrs:
-    case TidySortAttributes:
-    case TidyNewline:
-    case TidyAccessibilityCheckLevel:
-        d->type = "enum";
-        d->vals = NULL;
-        d->def =
-            optId==TidyNewline ?
-            "<em>Platform dependent</em>"
-            :tidyOptGetCurrPick( tdoc, optId );
-        break;
-
-    case TidyDoctype:
-        d->type = "DocType";
-        d->vals = NULL;
-        {
-            ctmbstr sdef = NULL;
-            sdef = tidyOptGetCurrPick( tdoc, TidyDoctypeMode );
-            if ( !sdef || *sdef == '*' )
-                sdef = tidyOptGetValue( tdoc, TidyDoctype );
-            d->def = sdef;
-        }
-        break;
-
-    case TidyInlineTags:
-    case TidyBlockTags:
-    case TidyEmptyTags:
-    case TidyPreTags:
-        d->type = "Tag names";
-        d->vals = "tagX, tagY, ...";
-        d->def = NULL;
-        break;
-
-    case TidyCharEncoding:
-    case TidyInCharEncoding:
-    case TidyOutCharEncoding:
-        d->type = "Encoding";
-        d->def = tidyOptGetEncName( tdoc, optId );
-        if (!d->def)
-            d->def = "?";
-        d->vals = NULL;
-        break;
-
-        /* General case will handle remaining */
-    default:
-        switch ( optTyp )
-        {
-        case TidyBoolean:
-            d->type = "Boolean";
-            d->vals = "y/n, yes/no, t/f, true/false, 1/0";
-            d->def = tidyOptGetCurrPick( tdoc, optId );
-            break;
-
-        case TidyInteger:
-            if (isAutoBool(topt))
-            {
-                d->type = "AutoBool";
-                d->vals = "auto, y/n, yes/no, t/f, true/false, 1/0";
-                d->def = tidyOptGetCurrPick( tdoc, optId );
-            }
-            else
-            {
-                uint idef;
-                d->type = "Integer";
-                if ( optId == TidyWrapLen )
-                    d->vals = "0 (no wrapping), 1, 2, ...";
-                else
-                    d->vals = "0, 1, 2, ...";
-
-                idef = tidyOptGetInt( tdoc, optId );
-                sprintf(d->tempdefs, "%u", idef);
-                d->def = d->tempdefs;
-            }
-            break;
-
-        case TidyString:
-            d->type = "String";
-            d->vals = NULL;
-            d->haveVals = no;
-            d->def = tidyOptGetValue( tdoc, optId );
-            break;
-        }
-    }
-}
-
-/* Array holding all options. Contains a trailing sentinel. */
-typedef struct {
-    TidyOption topt[N_TIDY_OPTIONS];
-} AllOption_t;
-
-static
-int cmpOpt(const void* e1_, const void *e2_)
-{
-    const TidyOption* e1 = (const TidyOption*)e1_;
-    const TidyOption* e2 = (const TidyOption*)e2_;
-    return strcmp(tidyOptGetName(*e1), tidyOptGetName(*e2));
-}
-
-static
-void getSortedOption( TidyDoc tdoc, AllOption_t *tOption )
-{
-    TidyIterator pos = tidyGetOptionList( tdoc );
-    uint i = 0;
-
-    while ( pos )
-    {
-        TidyOption topt = tidyGetNextOption( tdoc, &pos );
-        tOption->topt[i] = topt;
-        ++i;
-    }
-    tOption->topt[i] = NULL; /* sentinel */
-
-    qsort(tOption->topt,
-          /* Do not sort the sentinel: hence `-1' */
-          sizeof(tOption->topt)/sizeof(tOption->topt[0])-1,
-          sizeof(tOption->topt[0]),
-          cmpOpt);
-}
-
-static void ForEachSortedOption( TidyDoc tdoc, OptionFunc OptionPrint )
-{
-    AllOption_t tOption;
-    const TidyOption *topt;
-
-    getSortedOption( tdoc, &tOption );
-    for( topt = tOption.topt; *topt; ++topt)
-    {
-        OptionDesc d;
-
-        GetOption( tdoc, *topt, &d );
-        (*OptionPrint)( tdoc, *topt, &d );
-    }
-}
-
-static void ForEachOption( TidyDoc tdoc, OptionFunc OptionPrint )
-{
-    TidyIterator pos = tidyGetOptionList( tdoc );
-
-    while ( pos )
-    {
-        TidyOption topt = tidyGetNextOption( tdoc, &pos );
-        OptionDesc d;
-
-        GetOption( tdoc, topt, &d );
-        (*OptionPrint)( tdoc, topt, &d );
-    }
-}
-
-static
-void PrintAllowedValuesFromPick( TidyOption topt )
-{
-    TidyIterator pos = tidyOptGetPickList( topt );
-    Bool first = yes;
-    ctmbstr def;
-    while ( pos )
-    {
-        if (first)
-            first = no;
-        else
-            printf(", ");
-        def = tidyOptGetNextPick( topt, &pos );
-        printf("%s", def);
-    }
-}
-
-static
-void PrintAllowedValues( TidyOption topt, const OptionDesc *d )
-{
-    if (d->vals)
-        printf( "%s", d->vals );
-    else
-        PrintAllowedValuesFromPick( topt );
-}
-
-static
-void printXMLDescription( TidyDoc tdoc, TidyOption topt )
-{
-    ctmbstr doc = tidyOptGetDoc( tdoc, topt );
-
-    if (doc)
-        printf("  <description>%s</description>\n", doc);
-    else
-    {
-        printf("  <description />\n");
-        fprintf(stderr, "Warning: option `%s' is not documented.\n",
-                tidyOptGetName( topt ));
-    }
-}
-
-static
-void printXMLCrossRef( TidyDoc tdoc, TidyOption topt )
-{
-    TidyOption optLinked;
-    TidyIterator pos = tidyOptGetDocLinksList(tdoc, topt);
-    while( pos )
-    {
-        optLinked = tidyOptGetNextDocLinks(tdoc, &pos );
-        printf("  <seealso>%s</seealso>\n",tidyOptGetName(optLinked));
-    }
-}
-
-static
-void printXMLOption( TidyDoc tdoc, TidyOption topt, OptionDesc *d )
-{
-    if ( tidyOptIsReadOnly(topt) )
-        return;
-
-    printf( " <option class=\"%s\">\n", d->cat );
-    printf  ("  <name>%s</name>\n",d->name);
-    printf  ("  <type>%s</type>\n",d->type);
-    if (d->def)
-        printf("  <default>%s</default>\n",d->def);
-    else
-        printf("  <default />\n");
-    if (d->haveVals)
-    {
-        printf("  <example>");
-        PrintAllowedValues( topt, d );
-        printf("</example>\n");
-    }
-    else
-    {
-        printf("  <example />\n");
-    }
-    printXMLDescription( tdoc, topt );
-    printXMLCrossRef( tdoc, topt );
-    printf( " </option>\n" );
-}
-
-static void XMLoptionhelp( TidyDoc tdoc )
-{
-    printf( "<?xml version=\"1.0\"?>\n"
-            "<config version=\"%s\">\n", tidyReleaseDate());
-    ForEachOption( tdoc, printXMLOption );
-    printf( "</config>\n" );
-}
-
-static
-tmbstr GetAllowedValuesFromPick( TidyOption topt )
-{
-    TidyIterator pos;
-    Bool first;
-    ctmbstr def;
-    uint len = 0;
-    tmbstr val;
-
-    pos = tidyOptGetPickList( topt );
-    first = yes;
-    while ( pos )
-    {
-        if (first)
-            first = no;
-        else
-            len += 2;
-        def = tidyOptGetNextPick( topt, &pos );
-        len += strlen(def);
-    }
-    val = (tmbstr)malloc(len+1);
-    if (!val) outOfMemory();
-    val[0] = '\0';
-    pos = tidyOptGetPickList( topt );
-    first = yes;
-    while ( pos )
-    {
-        if (first)
-            first = no;
-        else
-            strcat(val, ", ");
-        def = tidyOptGetNextPick( topt, &pos );
-        strcat(val, def);
-    }
-    return val;
-}
-
-static
-tmbstr GetAllowedValues( TidyOption topt, const OptionDesc *d )
-{
-    if (d->vals)
-    {
-        tmbstr val = (tmbstr)malloc(1+strlen(d->vals));
-        if (!val) outOfMemory();
-        strcpy(val, d->vals);
-        return val;
-    }
-    else
-        return GetAllowedValuesFromPick( topt );
-}
-
-static
-void printOption( TidyDoc ARG_UNUSED(tdoc), TidyOption topt,
-                  OptionDesc *d )
-{
-    if ( tidyOptIsReadOnly(topt) )
-        return;
-
-    if ( *d->name || *d->type )
-    {
-        ctmbstr pval = d->vals;
-        tmbstr val = NULL;
-        if (!d->haveVals)
-        {
-            pval = "-";
-        }
-        else if (pval == NULL)
-        {
-            val = GetAllowedValues( topt, d);
-            pval = val;
-        }
-        print3Columns( fmt, 27, 9, 40, d->name, d->type, pval );
-        if (val)
-            free(val);
-    }
-}
-
-static void optionhelp( TidyDoc tdoc )
-{
-    printf( "\nHTML Tidy Configuration Settings\n\n" );
-    printf( "Within a file, use the form:\n\n" );
-    printf( "wrap: 72\n" );
-    printf( "indent: no\n\n" );
-    printf( "When specified on the command line, use the form:\n\n" );
-    printf( "--wrap 72 --indent no\n\n");
-
-    printf( fmt, "Name", "Type", "Allowable values" );
-    printf( fmt, ul, ul, ul );
-
-    ForEachSortedOption( tdoc, printOption );
-}
-
-static
-void printOptionValues( TidyDoc ARG_UNUSED(tdoc), TidyOption topt,
-                        OptionDesc *d )
-{
-    TidyOptionId optId = tidyOptGetId( topt );
-    ctmbstr ro = tidyOptIsReadOnly( topt ) ? "*" : "" ;
-
-    switch ( optId )
-    {
-    case TidyInlineTags:
-    case TidyBlockTags:
-    case TidyEmptyTags:
-    case TidyPreTags:
-        {
-            TidyIterator pos = tidyOptGetDeclTagList( tdoc );
-            while ( pos )
-            {
-                d->def = tidyOptGetNextDeclTag(tdoc, optId, &pos);
-                if ( pos )
-                {
-                    if ( *d->name )
-                        printf( valfmt, d->name, d->type, ro, d->def );
-                    else
-                        printf( fmt, d->name, d->type, d->def );
-                    d->name = "";
-                    d->type = "";
-                }
-            }
-        }
-        break;
-    case TidyNewline:
-        d->def = tidyOptGetCurrPick( tdoc, optId );
-        break;
-    default:
-        break;
-    }
-
-    /* fix for http://tidy.sf.net/bug/873921 */
-    if ( *d->name || *d->type || (d->def && *d->def) )
-    {
-        if ( ! d->def )
-            d->def = "";
-        if ( *d->name )
-            printf( valfmt, d->name, d->type, ro, d->def );
-        else
-            printf( fmt, d->name, d->type, d->def );
-    }
-}
-
-static void optionvalues( TidyDoc tdoc )
-{
-    printf( "\nConfiguration File Settings:\n\n" );
-    printf( fmt, "Name", "Type", "Current Value" );
-    printf( fmt, ul, ul, ul );
-
-    ForEachSortedOption( tdoc, printOptionValues );
-
-    printf( "\n\nValues marked with an *asterisk are calculated \n"
-            "internally by HTML Tidy\n\n" );
-}
-
-static void version( void )
-{
-#ifdef PLATFORM_NAME
-    printf( "HTML Tidy for HTML5 (experimental) for %s %s\n",
-             PLATFORM_NAME, tidyReleaseDate() );
-#else
-    printf( "HTML Tidy for HTML5 (experimental) %s\n", tidyReleaseDate() );
-#endif
-}
-
-static void unknownOption( uint c )
-{
-    fprintf( errout, "HTML Tidy: unknown option: %c\n", (char)c );
-}
-
-int main( int argc, char** argv )
-{
-    ctmbstr prog = argv[0];
-    ctmbstr cfgfil = NULL, errfil = NULL, htmlfil = NULL;
-    TidyDoc tdoc = tidyCreate();
-    int status = 0;
-
-    uint contentErrors = 0;
-    uint contentWarnings = 0;
-    uint accessWarnings = 0;
-
-    errout = stderr;  /* initialize to stderr */
-    status = 0;
-    
-#ifdef TIDY_CONFIG_FILE
-    if ( tidyFileExists( tdoc, TIDY_CONFIG_FILE) )
-    {
-        status = tidyLoadConfig( tdoc, TIDY_CONFIG_FILE );
-        if ( status != 0 )
-            fprintf(errout, "Loading config file \"%s\" failed, err = %d\n", TIDY_CONFIG_FILE, status);
-    }
-#endif /* TIDY_CONFIG_FILE */
-
-    /* look for env var "HTML_TIDY" */
-    /* then for ~/.tidyrc (on platforms defining $HOME) */
-
-    if ( (cfgfil = getenv("HTML_TIDY")) != NULL )
-    {
-        status = tidyLoadConfig( tdoc, cfgfil );
-        if ( status != 0 )
-            fprintf(errout, "Loading config file \"%s\" failed, err = %d\n", cfgfil, status);
-    }
-#ifdef TIDY_USER_CONFIG_FILE
-    else if ( tidyFileExists( tdoc, TIDY_USER_CONFIG_FILE) )
-    {
-        status = tidyLoadConfig( tdoc, TIDY_USER_CONFIG_FILE );
-        if ( status != 0 )
-            fprintf(errout, "Loading config file \"%s\" failed, err = %d\n", TIDY_USER_CONFIG_FILE, status);
-    }
-#endif /* TIDY_USER_CONFIG_FILE */
-
-    /* read command line */
-    while ( argc > 0 )
-    {
-        if (argc > 1 && argv[1][0] == '-')
-        {
-            /* support -foo and --foo */
-            ctmbstr arg = argv[1] + 1;
-
-            if ( strcasecmp(arg, "xml") == 0)
-                tidyOptSetBool( tdoc, TidyXmlTags, yes );
-
-            else if ( strcasecmp(arg,   "asxml") == 0 ||
-                      strcasecmp(arg, "asxhtml") == 0 )
-            {
-                tidyOptSetBool( tdoc, TidyXhtmlOut, yes );
-            }
-            else if ( strcasecmp(arg,   "ashtml") == 0 )
-                tidyOptSetBool( tdoc, TidyHtmlOut, yes );
-
-            else if ( strcasecmp(arg, "indent") == 0 )
-            {
-                tidyOptSetInt( tdoc, TidyIndentContent, TidyAutoState );
-                if ( tidyOptGetInt(tdoc, TidyIndentSpaces) == 0 )
-                    tidyOptResetToDefault( tdoc, TidyIndentSpaces );
-            }
-            else if ( strcasecmp(arg, "omit") == 0 )
-                tidyOptSetBool( tdoc, TidyOmitOptionalTags, yes );
-
-            else if ( strcasecmp(arg, "upper") == 0 )
-                tidyOptSetBool( tdoc, TidyUpperCaseTags, yes );
-
-            else if ( strcasecmp(arg, "clean") == 0 )
-                tidyOptSetBool( tdoc, TidyMakeClean, yes );
-
-            else if ( strcasecmp(arg, "gdoc") == 0 )
-                tidyOptSetBool( tdoc, TidyGDocClean, yes );
-
-            else if ( strcasecmp(arg, "bare") == 0 )
-                tidyOptSetBool( tdoc, TidyMakeBare, yes );
-
-            else if ( strcasecmp(arg, "raw") == 0      ||
-                      strcasecmp(arg, "ascii") == 0    ||
-                      strcasecmp(arg, "latin0") == 0   ||
-                      strcasecmp(arg, "latin1") == 0   ||
-                      strcasecmp(arg, "utf8") == 0     ||
-#ifndef NO_NATIVE_ISO2022_SUPPORT
-                      strcasecmp(arg, "iso2022") == 0  ||
-#endif
-#if SUPPORT_UTF16_ENCODINGS
-                      strcasecmp(arg, "utf16le") == 0  ||
-                      strcasecmp(arg, "utf16be") == 0  ||
-                      strcasecmp(arg, "utf16") == 0    ||
-#endif
-#if SUPPORT_ASIAN_ENCODINGS
-                      strcasecmp(arg, "shiftjis") == 0 ||
-                      strcasecmp(arg, "big5") == 0     ||
-#endif
-                      strcasecmp(arg, "mac") == 0      ||
-                      strcasecmp(arg, "win1252") == 0  ||
-                      strcasecmp(arg, "ibm858") == 0 )
-            {
-                tidySetCharEncoding( tdoc, arg );
-            }
-            else if ( strcasecmp(arg, "numeric") == 0 )
-                tidyOptSetBool( tdoc, TidyNumEntities, yes );
-
-            else if ( strcasecmp(arg, "modify") == 0 ||
-                      strcasecmp(arg, "change") == 0 ||  /* obsolete */
-                      strcasecmp(arg, "update") == 0 )   /* obsolete */
-            {
-                tidyOptSetBool( tdoc, TidyWriteBack, yes );
-            }
-            else if ( strcasecmp(arg, "errors") == 0 )
-                tidyOptSetBool( tdoc, TidyShowMarkup, no );
-
-            else if ( strcasecmp(arg, "quiet") == 0 )
-                tidyOptSetBool( tdoc, TidyQuiet, yes );
-
-            else if ( strcasecmp(arg, "help") == 0 ||
-                      strcasecmp(arg,    "h") == 0 || *arg == '?' )
-            {
-                help( prog );
-                tidyRelease( tdoc );
-                return 0; /* success */
-            }
-            else if ( strcasecmp(arg, "xml-help") == 0)
-            {
-                xml_help( );
-                tidyRelease( tdoc );
-                return 0; /* success */
-            }
-            else if ( strcasecmp(arg, "help-config") == 0 )
-            {
-                optionhelp( tdoc );
-                tidyRelease( tdoc );
-                return 0; /* success */
-            }
-            else if ( strcasecmp(arg, "xml-config") == 0 )
-            {
-                XMLoptionhelp( tdoc );
-                tidyRelease( tdoc );
-                return 0; /* success */
-            }
-            else if ( strcasecmp(arg, "show-config") == 0 )
-            {
-                optionvalues( tdoc );
-                tidyRelease( tdoc );
-                return 0; /* success */
-            }
-            else if ( strcasecmp(arg, "config") == 0 )
-            {
-                if ( argc >= 3 )
-                {
-                    ctmbstr post;
-
-                    tidyLoadConfig( tdoc, argv[2] );
-
-                    /* Set new error output stream if setting changed */
-                    post = tidyOptGetValue( tdoc, TidyErrFile );
-                    if ( post && (!errfil || !samefile(errfil, post)) )
-                    {
-                        errfil = post;
-                        errout = tidySetErrorFile( tdoc, post );
-                    }
-
-                    --argc;
-                    ++argv;
-                }
-            }
-
-#if SUPPORT_ASIAN_ENCODINGS
-            else if ( strcasecmp(arg, "language") == 0 ||
-                      strcasecmp(arg,     "lang") == 0 )
-            {
-                if ( argc >= 3 )
-                {
-                    tidyOptSetValue( tdoc, TidyLanguage, argv[2] );
-                    --argc;
-                    ++argv;
-                }
-            }
-#endif
-
-            else if ( strcasecmp(arg, "output") == 0 ||
-                      strcasecmp(arg, "-output-file") == 0 ||
-                      strcasecmp(arg, "o") == 0 )
-            {
-                if ( argc >= 3 )
-                {
-                    tidyOptSetValue( tdoc, TidyOutFile, argv[2] );
-                    --argc;
-                    ++argv;
-                }
-            }
-            else if ( strcasecmp(arg,  "file") == 0 ||
-                      strcasecmp(arg, "-file") == 0 ||
-                      strcasecmp(arg,     "f") == 0 )
-            {
-                if ( argc >= 3 )
-                {
-                    errfil = argv[2];
-                    errout = tidySetErrorFile( tdoc, errfil );
-                    --argc;
-                    ++argv;
-                }
-            }
-            else if ( strcasecmp(arg,  "wrap") == 0 ||
-                      strcasecmp(arg, "-wrap") == 0 ||
-                      strcasecmp(arg,     "w") == 0 )
-            {
-                if ( argc >= 3 )
-                {
-                    uint wraplen = 0;
-                    int nfields = sscanf( argv[2], "%u", &wraplen );
-                    tidyOptSetInt( tdoc, TidyWrapLen, wraplen );
-                    if (nfields > 0)
-                    {
-                        --argc;
-                        ++argv;
-                    }
-                }
-            }
-            else if ( strcasecmp(arg,  "version") == 0 ||
-                      strcasecmp(arg, "-version") == 0 ||
-                      strcasecmp(arg,        "v") == 0 )
-            {
-                version();
-                tidyRelease( tdoc );
-                return 0;  /* success */
-
-            }
-            else if ( strncmp(argv[1], "--", 2 ) == 0)
-            {
-                if ( tidyOptParseValue(tdoc, argv[1]+2, argv[2]) )
-                {
-                    /* Set new error output stream if setting changed */
-                    ctmbstr post = tidyOptGetValue( tdoc, TidyErrFile );
-                    if ( post && (!errfil || !samefile(errfil, post)) )
-                    {
-                        errfil = post;
-                        errout = tidySetErrorFile( tdoc, post );
-                    }
-
-                    ++argv;
-                    --argc;
-                }
-            }
-
-#if SUPPORT_ACCESSIBILITY_CHECKS
-            else if ( strcasecmp(arg, "access") == 0 )
-            {
-                if ( argc >= 3 )
-                {
-                    uint acclvl = 0;
-                    int nfields = sscanf( argv[2], "%u", &acclvl );
-                    tidyOptSetInt( tdoc, TidyAccessibilityCheckLevel, acclvl );
-                    if (nfields > 0)
-                    {
-                        --argc;
-                        ++argv;
-                    }
-                }
-            }
-#endif
-
-            else
-            {
-                uint c;
-                ctmbstr s = argv[1];
-
-                while ( (c = *++s) != '\0' )
-                {
-                    switch ( c )
-                    {
-                    case 'i':
-                        tidyOptSetInt( tdoc, TidyIndentContent, TidyAutoState );
-                        if ( tidyOptGetInt(tdoc, TidyIndentSpaces) == 0 )
-                            tidyOptResetToDefault( tdoc, TidyIndentSpaces );
-                        break;
-
-                    /* Usurp -o for output file.  Anyone hiding end tags?
-                    case 'o':
-                        tidyOptSetBool( tdoc, TidyHideEndTags, yes );
-                        break;
-                    */
-
-                    case 'u':
-                        tidyOptSetBool( tdoc, TidyUpperCaseTags, yes );
-                        break;
-
-                    case 'c':
-                        tidyOptSetBool( tdoc, TidyMakeClean, yes );
-                        break;
-
-                    case 'g':
-                        tidyOptSetBool( tdoc, TidyGDocClean, yes );
-                        break;
-
-                    case 'b':
-                        tidyOptSetBool( tdoc, TidyMakeBare, yes );
-                        break;
-
-                    case 'n':
-                        tidyOptSetBool( tdoc, TidyNumEntities, yes );
-                        break;
-
-                    case 'm':
-                        tidyOptSetBool( tdoc, TidyWriteBack, yes );
-                        break;
-
-                    case 'e':
-                        tidyOptSetBool( tdoc, TidyShowMarkup, no );
-                        break;
-
-                    case 'q':
-                        tidyOptSetBool( tdoc, TidyQuiet, yes );
-                        break;
-
-                    default:
-                        unknownOption( c );
-                        break;
-                    }
-                }
-            }
-
-            --argc;
-            ++argv;
-            continue;
-        }
-
-        if ( argc > 1 )
-        {
-            htmlfil = argv[1];
-            if ( tidyOptGetBool(tdoc, TidyEmacs) )
-                tidyOptSetValue( tdoc, TidyEmacsFile, htmlfil );
-            status = tidyParseFile( tdoc, htmlfil );
-        }
-        else
-        {
-            htmlfil = "stdin";
-            status = tidyParseStdin( tdoc );
-        }
-
-        if ( status >= 0 )
-            status = tidyCleanAndRepair( tdoc );
-
-        if ( status >= 0 )
-            status = tidyRunDiagnostics( tdoc );
-
-        if ( status > 1 ) /* If errors, do we want to force output? */
-            status = ( tidyOptGetBool(tdoc, TidyForceOutput) ? status : -1 );
-
-        if ( status >= 0 && tidyOptGetBool(tdoc, TidyShowMarkup) )
-        {
-            if ( tidyOptGetBool(tdoc, TidyWriteBack) && argc > 1 )
-                status = tidySaveFile( tdoc, htmlfil );
-            else
-            {
-                ctmbstr outfil = tidyOptGetValue( tdoc, TidyOutFile );
-                if ( outfil )
-                    status = tidySaveFile( tdoc, outfil );
-                else
-                    status = tidySaveStdout( tdoc );
-            }
-        }
-
-        contentErrors   += tidyErrorCount( tdoc );
-        contentWarnings += tidyWarningCount( tdoc );
-        accessWarnings  += tidyAccessWarningCount( tdoc );
-
-        --argc;
-        ++argv;
-
-        if ( argc <= 1 )
-            break;
-    }
-
-    if (!tidyOptGetBool(tdoc, TidyQuiet) &&
-        errout == stderr && !contentErrors)
-        fprintf(errout, "\n");
-
-    if (contentErrors + contentWarnings > 0 && 
-         !tidyOptGetBool(tdoc, TidyQuiet))
-        tidyErrorSummary(tdoc);
-
-    if (!tidyOptGetBool(tdoc, TidyQuiet))
-        tidyGeneralInfo(tdoc);
-
-    /* called to free hash tables etc. */
-    tidyRelease( tdoc );
-
-    /* return status can be used by scripts */
-    if ( contentErrors > 0 )
-        return 2;
-
-    if ( contentWarnings > 0 )
-        return 1;
-
-    /* 0 signifies all is ok */
-    return 0;
-}
-
-/*
- * local variables:
- * mode: c
- * indent-tabs-mode: nil
- * c-basic-offset: 4
- * eval: (c-set-offset 'substatement-open 0)
- * end:
- */
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/TidyNodeIter.c b/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/TidyNodeIter.c
deleted file mode 100644
index f010d0c..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/TidyNodeIter.c
+++ /dev/null
@@ -1,47 +0,0 @@
-#include "platform.h"
-#include "tidy-int.h"
-
-#include "TidyNodeIter.h"
-
-TidyNodeIter *newTidyNodeIter( Node *pStart )
-{
-    TidyNodeIter *pThis = NULL;
-    if (NULL != (pThis = MemAlloc( sizeof( TidyNodeIter ))))
-    {
-        ClearMemory( pThis, sizeof( TidyNodeIter ));
-        pThis->pTop = pStart;
-    }
-    return pThis;
-}
-
-Node *nextTidyNode( TidyNodeIter *pThis )
-{
-    if (NULL == pThis->pCurrent)
-    {
-        // just starting out, initialize
-        pThis->pCurrent = pThis->pTop->content;
-    }
-    else if (NULL != pThis->pCurrent->content)
-    {
-        // the next element, if any, is my first-born child
-        pThis->pCurrent = pThis->pCurrent->content;
-    }
-    else 
-    {
-        // no children, I guess my next younger brother inherits the throne.
-        while (   NULL == pThis->pCurrent->next
-               && pThis->pTop != pThis->pCurrent->parent )
-        {
-            //  no siblings, do any of my ancestors have younger sibs?
-            pThis->pCurrent = pThis->pCurrent->parent;
-        }
-        pThis->pCurrent = pThis->pCurrent->next;
-    }
-    return pThis->pCurrent;
-}
-
-void setCurrentNode( TidyNodeIter *pThis, Node *newCurr )
-{
-    if (NULL != newCurr)
-        pThis->pCurrent = newCurr;
-}
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/TidyNodeIter.h b/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/TidyNodeIter.h
deleted file mode 100644
index e949e3f..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/TidyNodeIter.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/* TidyNodeIter
-
-  (c) 1998-2003 (W3C) MIT, ERCIM, Keio University
-  See tidy.h for the copyright notice.
-  
-  These files contain utility routines to perform in-order traversals of the
-  Tidy document tree, beginning at an arbitrary node.
-
-  A traversal of the tree can be performed in a manner similar to the following:
-
-  Node *testNode;
-  TidyNodeIter *iter = newTidyNodeIter( FindBody( tdoc ));
-  for (testNode = nextTidyNode( &iter );
-       NULL != testNode;
-       testNode = nextTidyNode( &iter ))
-  {
-  }
-
-  TODO:  Add a prevTidyNode() function.
-*/
-
-#include "lexer.h"
-
-typedef struct _TidyNodeIter
-{
-    Node *pTop, *pCurrent;
-} TidyNodeIter;
-
-TidyNodeIter *newTidyNodeIter( Node *pStart );
-
-/* 
-    nextTidyNode( TidyNodeIter *pIter )
-
-    if pCurrent is NULL, this function initializes it to match pTop, and
-    returns that value, otherwise it advances to the next node in order, 
-    and returns that value. When pTop == pCurrent, the function returns NULL
-    to indicate that the entire tree has been visited.
-*/
-Node *nextTidyNode( TidyNodeIter *pIter );
-
-/*
-    setCurrentNode( TidyNodeIter *pThis, Node *newCurr )
-
-    Resets pCurrent to match the passed value; useful if you need to back up
-    to an unaltered point in the tree, or to skip a section. The next call to 
-    nextTidyNode() will return the node which follows newCurr in order.
-
-    Minimal error checking is performed; unexpected results _will_ occur if 
-    newCurr is not a descendant node of pTop.
-*/
-void setCurrentNode( TidyNodeIter *pThis, Node *newCurr );
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/httpio.c b/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/httpio.c
deleted file mode 100644
index cda9270..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/httpio.c
+++ /dev/null
@@ -1,224 +0,0 @@
-#include "tmbstr.h"
-
-#include "httpio.h"
-
-int
-makeConnection ( HTTPInputSource *pHttp )
-{
-    struct sockaddr_in sock;
-    struct hostent *pHost;
-
-    /* Get internet address of the host. */
-    if (!(pHost = gethostbyname ( pHttp->pHostName )))
-    {
-        return -1;
-    }
-    /* Copy the address of the host to socket description.  */
-    memcpy (&sock.sin_addr, pHost->h_addr, pHost->h_length);
-
-    /* Set port and protocol */
-    sock.sin_family = AF_INET;
-    sock.sin_port = htons( pHttp->nPort );
-
-    /* Make an internet socket, stream type.  */
-    if ((pHttp->s = socket (AF_INET, SOCK_STREAM, 0)) == -1)
-        return -1;
-
-    /* Connect the socket to the remote host.  */
-    if (connect (pHttp->s, (struct sockaddr *) &sock, sizeof( sock )))
-    {
-        if (errno == ECONNREFUSED)
-            return ECONNREFUSED;
-        else
-            return -1;
-    }
-    return 0;
-}
-
-
-int parseURL( HTTPInputSource *pHttp, tmbstr url )
-{
-  int i, j = 0;
-  ctmbstr pStr;
-
-    pStr = tmbsubstr( url, "://" );
-
-    /* If protocol is there, but not http, bail out, else assume http.  */
-    if (NULL != pStr)
-    {
-        if (tmbstrncasecmp( url, "http://", 7 ))
-            return -1;
-    }
-
-    if (NULL != pStr)
-        j = pStr - url + 3;
-    for (i = j; url[i] && url[i] != ':' && url[i] != '/'; i++) {}
-    if (i == j)
-        return -1;
-
-    /* Get the hostname.  */
-    pHttp->pHostName = tmbstrndup (&url[j], i - j );
-
-    if (url[i] == ':')
-    {
-        /* We have a colon delimiting the hostname.  It should mean that
-        a port number is following it */
-        pHttp->nPort = 0;
-        if (isdigit( url[++i] ))    /* A port number */
-        {
-            for (; url[i] && url[i] != '/'; i++)
-            {
-                if (isdigit( url[i] ))
-                    pHttp->nPort = 10 * pHttp->nPort + (url[i] - '0');
-                else
-                    return -1;
-            }
-            if (!pHttp->nPort)
-                return -1;
-        }
-        else                      /* or just a misformed port number */
-            return -1;
-    }
-    else
-        /* Assume default port.  */
-        pHttp->nPort = 80;
-
-    /* skip past the delimiting slash (we'll add it later )  */
-    while (url[i] && url[i] == '/')
-        i++;
-    pHttp->pResource = tmbstrdup (url + i );
-    return 0;
-}
-
-
-int fillBuffer( HTTPInputSource *in )
-{
-    if (0 < in->s)
-    {
-        in->nBufSize = recv( in->s, in->buffer, sizeof( in->buffer ), 0);
-        in->nextBytePos = 0;
-        if (in->nBufSize < sizeof( in->buffer ))
-            in->buffer[in->nBufSize] = '\0';
-    }
-    else
-        in->nBufSize = 0;
-    return in->nBufSize;
-}
-
-
-int openURL( HTTPInputSource *in, tmbstr pUrl )
-{
-    int rc = -1;
-#ifdef WIN32    
-    WSADATA wsaData;
-
-    rc = WSAStartup( 514, &wsaData );
-#endif
-
-    in->tis.getByte = (TidyGetByteFunc) HTTPGetByte; 
-    in->tis.ungetByte = (TidyUngetByteFunc) HTTPUngetByte;
-    in->tis.eof = (TidyEOFFunc) HTTPIsEOF;
-    in->tis.sourceData = (uint) in;
-    in->nextBytePos = in->nextUnGotBytePos = in->nBufSize = 0;
-    parseURL( in, pUrl );
-    if (0 == (rc = makeConnection( in )))
-    {
-        char ch, lastCh = '\0';
-        int blanks = 0;
-
-        char *getCmd = MemAlloc( 48 + strlen( in->pResource ));
-        sprintf( getCmd, "GET /%s HTTP/1.0\r\nAccept: text/html\r\n\r\n", in->pResource );
-        send( in->s, getCmd, strlen( getCmd ), 0 );
-        MemFree( getCmd );
-
-        /*  skip past the header information  */
-        while (   in->nextBytePos >= in->nBufSize
-               && 0 < (rc = fillBuffer( in )))
-        {
-            if (1 < blanks)
-                break;
-            for (; in->nextBytePos < sizeof( in->buffer ) 
-                   && 0 != in->buffer[ in->nextBytePos ]; 
-                 in->nextBytePos++ )
-            {
-                ch = in->buffer[ in->nextBytePos ];
-                if (ch == '\r' || ch == '\n')
-                {
-                    if (ch == lastCh)
-                    {
-                        /*  Two carriage returns or two newlines in a row,
-                            that's good enough */
-                        blanks++;
-                    }
-                    if (lastCh == '\r' || lastCh == '\n')
-                    {
-                        blanks++;
-                    }
-                }
-                else
-                    blanks = 0;
-                lastCh = ch;
-                if (1 < blanks)
-                {
-                    /* end of header, scan to first non-white and return */
-                    while ('\0' != ch && isspace( ch ))
-                        ch = in->buffer[ ++in->nextBytePos ];
-                    break;
-                }
-            }
-        }
-    }
-    return rc;
-}
-
-
-void closeURL( HTTPInputSource *source )
-{
-    if (0 < source->s)
-        closesocket( source->s );
-    source->s = -1;
-    source->tis.sourceData = 0;
-#ifdef WIN32
-    WSACleanup();
-#endif
-}
-
-
-int HTTPGetByte( HTTPInputSource *source )
-{
-    if (source->nextUnGotBytePos)
-        return source->unGetBuffer[ --source->nextUnGotBytePos ];
-    if (0 != source->nBufSize && source->nextBytePos >= source->nBufSize)
-    {
-        fillBuffer( source );
-    }
-    if (0 == source->nBufSize)
-        return EndOfStream;
-    return source->buffer[ source->nextBytePos++ ];
-}
-
-void HTTPUngetByte( HTTPInputSource *source, uint byteValue )
-{
-    if (source->nextUnGotBytePos < 16 )  /* Only you can prevent buffer overflows */
-        source->unGetBuffer[ source->nextUnGotBytePos++ ] = (char) byteValue;
-}
-
-Bool HTTPIsEOF( HTTPInputSource *source )
-{
-    if (source->nextUnGotBytePos)
-        /* pending ungot bytes, not done */
-        return no;
-
-    if (   0 != source->nBufSize 
-        && source->nextBytePos >= source->nBufSize)
-        /* We've consumed the existing buffer, get another */
-        fillBuffer( source );
-
-    if (source->nextBytePos < source->nBufSize)
-        /*  we have stuff in the buffer, must not be done. */
-        return no;
-
-    /* Nothing in the buffer, and the last receive failed, must be done.  */
-    return yes;
-}
-
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/httpio.h b/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/httpio.h
deleted file mode 100644
index 0181c49..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/experimental/httpio.h
+++ /dev/null
@@ -1,48 +0,0 @@
-#ifndef __HTTPIO_H__
-#define __HTTPIO_H__
-
-#include "platform.h"
-#include "tidy.h"
-
-#ifdef WIN32
-# include <winsock.h>
-# define ECONNREFUSED WSAECONNREFUSED
-#else
-# include <sys/socket.h>
-# include <netdb.h>
-# include <netinet/in.h>
-#ifndef __BEOS__
-# include <arpa/inet.h>
-#endif
-#endif /* WIN32 */
-
-TIDY_STRUCT
-typedef struct _HTTPInputSource
-{
-    TidyInputSource tis;    //  This declaration must be first and must not be changed!
-
-    tmbstr pHostName;
-    tmbstr pResource;
-    unsigned short nPort, nextBytePos, nextUnGotBytePos, nBufSize;
-    SOCKET s;
-    char buffer[1024];
-    char unGetBuffer[16];
-
-} HTTPInputSource;
-
-/*  get next byte from input source */
-int HTTPGetByte( HTTPInputSource *source );
-
-/*  unget byte back to input source */
-void HTTPUngetByte( HTTPInputSource *source, uint byteValue );
-
-/* check if input source at end */
-Bool HTTPIsEOF( HTTPInputSource *source );
-
-int parseURL( HTTPInputSource* source, tmbstr pUrl );
-
-int openURL( HTTPInputSource* source, tmbstr pUrl );
-
-void closeURL( HTTPInputSource *source );
-
-#endif
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/annotated.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/annotated.html
deleted file mode 100644
index 65c9bf0..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/annotated.html
+++ /dev/null
@@ -1,90 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Data Structures</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('annotated.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">Data Structures</div>  </div>
-</div><!--header-->
-<div class="contents">
-<div class="textblock">Here are the data structures with brief descriptions:</div><table>
-  <tr><td class="indexkey"><a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="struct__TidyBuffer.html">_TidyBuffer</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="structTidyAttr.html">TidyAttr</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="structTidyDoc.html">TidyDoc</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="structTidyNode.html">TidyNode</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="structTidyOption.html">TidyOption</a></td><td class="indexvalue"></td></tr>
-</table>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/annotated.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/annotated.js
deleted file mode 100644
index 19e529e..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/annotated.js
+++ /dev/null
@@ -1,12 +0,0 @@
-var annotated =
-[
-    [ "_TidyAllocator", "struct__TidyAllocator.html", "struct__TidyAllocator" ],
-    [ "_TidyAllocatorVtbl", "struct__TidyAllocatorVtbl.html", "struct__TidyAllocatorVtbl" ],
-    [ "_TidyBuffer", "struct__TidyBuffer.html", "struct__TidyBuffer" ],
-    [ "_TidyInputSource", "struct__TidyInputSource.html", "struct__TidyInputSource" ],
-    [ "_TidyOutputSink", "struct__TidyOutputSink.html", "struct__TidyOutputSink" ],
-    [ "TidyAttr", "structTidyAttr.html", null ],
-    [ "TidyDoc", "structTidyDoc.html", null ],
-    [ "TidyNode", "structTidyNode.html", null ],
-    [ "TidyOption", "structTidyOption.html", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/bc_s.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/bc_s.png
deleted file mode 100644
index e401862..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/bc_s.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/bdwn.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/bdwn.png
deleted file mode 100644
index d0b575b..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/bdwn.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/buffio_8h.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/buffio_8h.html
deleted file mode 100644
index ea33349..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/buffio_8h.html
+++ /dev/null
@@ -1,550 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: buffio.h File Reference</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('buffio_8h.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#nested-classes">Data Structures</a> &#124;
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">buffio.h File Reference</div>  </div>
-</div><!--header-->
-<div class="contents">
-
-<p><a href="buffio_8h_source.html">Go to the source code of this file.</a></p>
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="nested-classes"></a>
-Data Structures</h2></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyBuffer.html">_TidyBuffer</a></td></tr>
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:a3cf251a96f69f05495744af6c9d0339b"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b">tidyBufInit</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:aff43ddd9fc78532617d88db55b164f5e"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e">tidyBufInitWithAllocator</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, <a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *allocator)</td></tr>
-<tr class="memitem:a896654bd99113bfe5e86b924836aacc3"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a896654bd99113bfe5e86b924836aacc3">tidyBufAlloc</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, uint allocSize)</td></tr>
-<tr class="memitem:a57c832b4ddbc19a329a5ab9936eb5826"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826">tidyBufAllocWithAllocator</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, <a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *allocator, uint allocSize)</td></tr>
-<tr class="memitem:a7a66ba1f574955d1fc1de57476e849f2"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2">tidyBufCheckAlloc</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, uint allocSize, uint chunkSize)</td></tr>
-<tr class="memitem:a65aae9ae4b499e62038700f4792849fc"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a65aae9ae4b499e62038700f4792849fc">tidyBufFree</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:aa94e59f613a495b17e90c1c4778c3911"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911">tidyBufClear</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:ac5909e78d98583cb245dd2004469bb93"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#ac5909e78d98583cb245dd2004469bb93">tidyBufAttach</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, byte *bp, uint size)</td></tr>
-<tr class="memitem:a8da2bf473b14e6bdd5cd40fc47c29903"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903">tidyBufDetach</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:ad59b32f81789b634758274f34be4d25b"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#ad59b32f81789b634758274f34be4d25b">tidyBufAppend</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, void *vp, uint size)</td></tr>
-<tr class="memitem:af48af586ada5ff264501fe9ef4c67dd1"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1">tidyBufPutByte</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, byte bv)</td></tr>
-<tr class="memitem:af8b1e8fbe3c29d08250794d7e4925ea6"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6">tidyBufPopByte</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:a5a2e0c47b4b14b5beb17ac982fa21eeb"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb">tidyBufGetByte</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:a7e7d8e58623c8bde00d66141edb2cae0"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0">tidyBufEndOfInput</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:a1d1f2039b769381d418ac1187b50b292"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a1d1f2039b769381d418ac1187b50b292">tidyBufUngetByte</a> (<a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf, byte bv)</td></tr>
-<tr class="memitem:a73da3182aea89939af1d98504a3b2df0"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a73da3182aea89939af1d98504a3b2df0">tidyInitInputBuffer</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *inp, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:a882a92590a9e6ecce16d5b8e8db19fbb"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb">tidyInitOutputBuffer</a> (<a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *outp, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<div class="textblock"><ul>
-<li>Treat buffer as an I/O stream.</li>
-</ul>
-<p>(c) 1998-2007 (W3C) MIT, ERCIM, Keio University See <a class="el" href="tidy_8h.html">tidy.h</a> for the copyright notice.</p>
-<p>CVS Info :</p>
-<dl class="section rcs"><dt>Author:</b></dt><dd>arnaud02 </dd></dl>
-<dl class="section rcs"><dt>Date:</b></dt><dd>2007/01/23 11:17:45 </dd></dl>
-<dl class="section rcs"><dt>Revision:</b></dt><dd>1.9 </dd></dl>
-<p>Requires buffer to automatically grow as bytes are added. Must keep track of current read and write points. </p>
-</div><hr/><h2>Function Documentation</h2>
-<a class="anchor" id="a3cf251a96f69f05495744af6c9d0339b"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b">tidyBufInit</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Initialize data structure using the default allocator </p>
-
-</div>
-</div>
-<a class="anchor" id="aff43ddd9fc78532617d88db55b164f5e"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e">tidyBufInitWithAllocator</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *&#160;</td>
-          <td class="paramname"><em>allocator</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Initialize data structure using the given custom allocator </p>
-
-</div>
-</div>
-<a class="anchor" id="a896654bd99113bfe5e86b924836aacc3"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a896654bd99113bfe5e86b924836aacc3">tidyBufAlloc</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">uint&#160;</td>
-          <td class="paramname"><em>allocSize</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Free current buffer, allocate given amount, reset input pointer, use the default allocator </p>
-
-</div>
-</div>
-<a class="anchor" id="a57c832b4ddbc19a329a5ab9936eb5826"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826">tidyBufAllocWithAllocator</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *&#160;</td>
-          <td class="paramname"><em>allocator</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">uint&#160;</td>
-          <td class="paramname"><em>allocSize</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Free current buffer, allocate given amount, reset input pointer, use the given custom allocator </p>
-
-</div>
-</div>
-<a class="anchor" id="a7a66ba1f574955d1fc1de57476e849f2"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2">tidyBufCheckAlloc</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">uint&#160;</td>
-          <td class="paramname"><em>allocSize</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">uint&#160;</td>
-          <td class="paramname"><em>chunkSize</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Expand buffer to given size. Chunk size is minimum growth. Pass 0 for default of 256 bytes. </p>
-
-</div>
-</div>
-<a class="anchor" id="a65aae9ae4b499e62038700f4792849fc"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a65aae9ae4b499e62038700f4792849fc">tidyBufFree</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Free current contents and zero out </p>
-
-</div>
-</div>
-<a class="anchor" id="aa94e59f613a495b17e90c1c4778c3911"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911">tidyBufClear</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Set buffer bytes to 0 </p>
-
-</div>
-</div>
-<a class="anchor" id="ac5909e78d98583cb245dd2004469bb93"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#ac5909e78d98583cb245dd2004469bb93">tidyBufAttach</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">byte *&#160;</td>
-          <td class="paramname"><em>bp</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">uint&#160;</td>
-          <td class="paramname"><em>size</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Attach to existing buffer </p>
-
-</div>
-</div>
-<a class="anchor" id="a8da2bf473b14e6bdd5cd40fc47c29903"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903">tidyBufDetach</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Detach from buffer. Caller must free. </p>
-
-</div>
-</div>
-<a class="anchor" id="ad59b32f81789b634758274f34be4d25b"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#ad59b32f81789b634758274f34be4d25b">tidyBufAppend</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">void *&#160;</td>
-          <td class="paramname"><em>vp</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">uint&#160;</td>
-          <td class="paramname"><em>size</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Append bytes to buffer. Expand if necessary. </p>
-
-</div>
-</div>
-<a class="anchor" id="af48af586ada5ff264501fe9ef4c67dd1"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1">tidyBufPutByte</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">byte&#160;</td>
-          <td class="paramname"><em>bv</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Append one byte to buffer. Expand if necessary. </p>
-
-</div>
-</div>
-<a class="anchor" id="af8b1e8fbe3c29d08250794d7e4925ea6"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6">tidyBufPopByte</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get byte from end of buffer </p>
-
-</div>
-</div>
-<a class="anchor" id="a5a2e0c47b4b14b5beb17ac982fa21eeb"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb">tidyBufGetByte</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get byte from front of buffer. Increment input offset. </p>
-
-</div>
-</div>
-<a class="anchor" id="a7e7d8e58623c8bde00d66141edb2cae0"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0">tidyBufEndOfInput</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>At end of buffer? </p>
-
-</div>
-</div>
-<a class="anchor" id="a1d1f2039b769381d418ac1187b50b292"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a1d1f2039b769381d418ac1187b50b292">tidyBufUngetByte</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">byte&#160;</td>
-          <td class="paramname"><em>bv</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Put a byte back into the buffer. Decrement input offset. </p>
-
-</div>
-</div>
-<a class="anchor" id="a73da3182aea89939af1d98504a3b2df0"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a73da3182aea89939af1d98504a3b2df0">tidyInitInputBuffer</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *&#160;</td>
-          <td class="paramname"><em>inp</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Initialize a buffer input source </p>
-
-</div>
-</div>
-<a class="anchor" id="a882a92590a9e6ecce16d5b8e8db19fbb"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb">tidyInitOutputBuffer</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *&#160;</td>
-          <td class="paramname"><em>outp</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Initialize a buffer output sink </p>
-
-</div>
-</div>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="buffio_8h.html">buffio.h</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/buffio_8h.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/buffio_8h.js
deleted file mode 100644
index 0567423..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/buffio_8h.js
+++ /dev/null
@@ -1,20 +0,0 @@
-var buffio_8h =
-[
-    [ "tidyBufInit", "buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b", null ],
-    [ "tidyBufInitWithAllocator", "buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e", null ],
-    [ "tidyBufAlloc", "buffio_8h.html#a896654bd99113bfe5e86b924836aacc3", null ],
-    [ "tidyBufAllocWithAllocator", "buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826", null ],
-    [ "tidyBufCheckAlloc", "buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2", null ],
-    [ "tidyBufFree", "buffio_8h.html#a65aae9ae4b499e62038700f4792849fc", null ],
-    [ "tidyBufClear", "buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911", null ],
-    [ "tidyBufAttach", "buffio_8h.html#ac5909e78d98583cb245dd2004469bb93", null ],
-    [ "tidyBufDetach", "buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903", null ],
-    [ "tidyBufAppend", "buffio_8h.html#ad59b32f81789b634758274f34be4d25b", null ],
-    [ "tidyBufPutByte", "buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1", null ],
-    [ "tidyBufPopByte", "buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6", null ],
-    [ "tidyBufGetByte", "buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb", null ],
-    [ "tidyBufEndOfInput", "buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0", null ],
-    [ "tidyBufUngetByte", "buffio_8h.html#a1d1f2039b769381d418ac1187b50b292", null ],
-    [ "tidyInitInputBuffer", "buffio_8h.html#a73da3182aea89939af1d98504a3b2df0", null ],
-    [ "tidyInitOutputBuffer", "buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/buffio_8h_source.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/buffio_8h_source.html
deleted file mode 100644
index 4d0d543..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/buffio_8h_source.html
+++ /dev/null
@@ -1,198 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: buffio.h Source File</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('buffio_8h.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">buffio.h</div>  </div>
-</div><!--header-->
-<div class="contents">
-<a href="buffio_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="preprocessor">#ifndef __TIDY_BUFFIO_H__</span>
-<a name="l00002"></a>00002 <span class="preprocessor"></span><span class="preprocessor">#define __TIDY_BUFFIO_H__</span>
-<a name="l00003"></a>00003 <span class="preprocessor"></span><span class="comment"></span>
-<a name="l00004"></a>00004 <span class="comment">/** @file buffio.h - Treat buffer as an I/O stream.</span>
-<a name="l00005"></a>00005 <span class="comment"></span>
-<a name="l00006"></a>00006 <span class="comment">  (c) 1998-2007 (W3C) MIT, ERCIM, Keio University</span>
-<a name="l00007"></a>00007 <span class="comment">  See tidy.h for the copyright notice.</span>
-<a name="l00008"></a>00008 <span class="comment"></span>
-<a name="l00009"></a>00009 <span class="comment">  CVS Info :</span>
-<a name="l00010"></a>00010 <span class="comment"></span>
-<a name="l00011"></a>00011 <span class="comment">    $Author: arnaud02 $ </span>
-<a name="l00012"></a>00012 <span class="comment">    $Date: 2007/01/23 11:17:45 $ </span>
-<a name="l00013"></a>00013 <span class="comment">    $Revision: 1.9 $ </span>
-<a name="l00014"></a>00014 <span class="comment"></span>
-<a name="l00015"></a>00015 <span class="comment">  Requires buffer to automatically grow as bytes are added.</span>
-<a name="l00016"></a>00016 <span class="comment">  Must keep track of current read and write points.</span>
-<a name="l00017"></a>00017 <span class="comment"></span>
-<a name="l00018"></a>00018 <span class="comment">*/</span>
-<a name="l00019"></a>00019 
-<a name="l00020"></a>00020 <span class="preprocessor">#include &quot;platform.h&quot;</span>
-<a name="l00021"></a>00021 <span class="preprocessor">#include &quot;<a class="code" href="tidy_8h.html">tidy.h</a>&quot;</span>
-<a name="l00022"></a>00022 
-<a name="l00023"></a>00023 <span class="preprocessor">#ifdef __cplusplus</span>
-<a name="l00024"></a>00024 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">&quot;C&quot;</span> {
-<a name="l00025"></a>00025 <span class="preprocessor">#endif</span>
-<a name="l00026"></a>00026 <span class="preprocessor"></span><span class="comment"></span>
-<a name="l00027"></a>00027 <span class="comment">/** TidyBuffer - A chunk of memory */</span>
-<a name="l00028"></a>00028 TIDY_STRUCT
-<a name="l00029"></a><a class="code" href="struct__TidyBuffer.html">00029</a> <span class="keyword">struct </span><a class="code" href="struct__TidyBuffer.html">_TidyBuffer</a> 
-<a name="l00030"></a>00030 {
-<a name="l00031"></a><a class="code" href="struct__TidyBuffer.html#ab6655c52ed81490e8016976a4810a330">00031</a>     <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a>* <a class="code" href="struct__TidyBuffer.html#ab6655c52ed81490e8016976a4810a330">allocator</a>;  <span class="comment">/**&lt; Memory allocator */</span>
-<a name="l00032"></a><a class="code" href="struct__TidyBuffer.html#a2b1c3814410eefbe2168b248485eea91">00032</a>     byte* <a class="code" href="struct__TidyBuffer.html#a2b1c3814410eefbe2168b248485eea91">bp</a>;           <span class="comment">/**&lt; Pointer to bytes */</span>
-<a name="l00033"></a><a class="code" href="struct__TidyBuffer.html#a227728492f6266dec940bcc541046cd9">00033</a>     uint  <a class="code" href="struct__TidyBuffer.html#a227728492f6266dec940bcc541046cd9">size</a>;         <span class="comment">/**&lt; # bytes currently in use */</span>
-<a name="l00034"></a><a class="code" href="struct__TidyBuffer.html#a523a1f5f2a1b0333d70b9d8a5a52de13">00034</a>     uint  <a class="code" href="struct__TidyBuffer.html#a523a1f5f2a1b0333d70b9d8a5a52de13">allocated</a>;    <span class="comment">/**&lt; # bytes allocated */</span> 
-<a name="l00035"></a><a class="code" href="struct__TidyBuffer.html#af607eaeb44ae6d8f2371e1e05b016caf">00035</a>     uint  <a class="code" href="struct__TidyBuffer.html#af607eaeb44ae6d8f2371e1e05b016caf">next</a>;         <span class="comment">/**&lt; Offset of current input position */</span>
-<a name="l00036"></a>00036 };
-<a name="l00037"></a>00037 <span class="comment"></span>
-<a name="l00038"></a>00038 <span class="comment">/** Initialize data structure using the default allocator */</span>
-<a name="l00039"></a>00039 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b">tidyBufInit</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00040"></a>00040 <span class="comment"></span>
-<a name="l00041"></a>00041 <span class="comment">/** Initialize data structure using the given custom allocator */</span>
-<a name="l00042"></a>00042 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e">tidyBufInitWithAllocator</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a>* allocator );
-<a name="l00043"></a>00043 <span class="comment"></span>
-<a name="l00044"></a>00044 <span class="comment">/** Free current buffer, allocate given amount, reset input pointer,</span>
-<a name="l00045"></a>00045 <span class="comment">    use the default allocator */</span>
-<a name="l00046"></a>00046 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a896654bd99113bfe5e86b924836aacc3">tidyBufAlloc</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, uint allocSize );
-<a name="l00047"></a>00047 <span class="comment"></span>
-<a name="l00048"></a>00048 <span class="comment">/** Free current buffer, allocate given amount, reset input pointer,</span>
-<a name="l00049"></a>00049 <span class="comment">    use the given custom allocator */</span>
-<a name="l00050"></a>00050 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826">tidyBufAllocWithAllocator</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf,
-<a name="l00051"></a>00051                                                       <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a>* allocator,
-<a name="l00052"></a>00052                                                       uint allocSize );
-<a name="l00053"></a>00053 <span class="comment"></span>
-<a name="l00054"></a>00054 <span class="comment">/** Expand buffer to given size. </span>
-<a name="l00055"></a>00055 <span class="comment">**  Chunk size is minimum growth. Pass 0 for default of 256 bytes.</span>
-<a name="l00056"></a>00056 <span class="comment">*/</span>
-<a name="l00057"></a>00057 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2">tidyBufCheckAlloc</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf,
-<a name="l00058"></a>00058                                               uint allocSize, uint chunkSize );
-<a name="l00059"></a>00059 <span class="comment"></span>
-<a name="l00060"></a>00060 <span class="comment">/** Free current contents and zero out */</span>
-<a name="l00061"></a>00061 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a65aae9ae4b499e62038700f4792849fc">tidyBufFree</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00062"></a>00062 <span class="comment"></span>
-<a name="l00063"></a>00063 <span class="comment">/** Set buffer bytes to 0 */</span>
-<a name="l00064"></a>00064 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911">tidyBufClear</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00065"></a>00065 <span class="comment"></span>
-<a name="l00066"></a>00066 <span class="comment">/** Attach to existing buffer */</span>
-<a name="l00067"></a>00067 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#ac5909e78d98583cb245dd2004469bb93">tidyBufAttach</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, byte* bp, uint size );
-<a name="l00068"></a>00068 <span class="comment"></span>
-<a name="l00069"></a>00069 <span class="comment">/** Detach from buffer.  Caller must free. */</span>
-<a name="l00070"></a>00070 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903">tidyBufDetach</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00071"></a>00071 
-<a name="l00072"></a>00072 <span class="comment"></span>
-<a name="l00073"></a>00073 <span class="comment">/** Append bytes to buffer.  Expand if necessary. */</span>
-<a name="l00074"></a>00074 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#ad59b32f81789b634758274f34be4d25b">tidyBufAppend</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, <span class="keywordtype">void</span>* vp, uint size );
-<a name="l00075"></a>00075 <span class="comment"></span>
-<a name="l00076"></a>00076 <span class="comment">/** Append one byte to buffer.  Expand if necessary. */</span>
-<a name="l00077"></a>00077 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1">tidyBufPutByte</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, byte bv );
-<a name="l00078"></a>00078 <span class="comment"></span>
-<a name="l00079"></a>00079 <span class="comment">/** Get byte from end of buffer */</span>
-<a name="l00080"></a>00080 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL  <a class="code" href="buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6">tidyBufPopByte</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00081"></a>00081 
-<a name="l00082"></a>00082 <span class="comment"></span>
-<a name="l00083"></a>00083 <span class="comment">/** Get byte from front of buffer.  Increment input offset. */</span>
-<a name="l00084"></a>00084 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL  <a class="code" href="buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb">tidyBufGetByte</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00085"></a>00085 <span class="comment"></span>
-<a name="l00086"></a>00086 <span class="comment">/** At end of buffer? */</span>
-<a name="l00087"></a>00087 TIDY_EXPORT Bool TIDY_CALL <a class="code" href="buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0">tidyBufEndOfInput</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00088"></a>00088 <span class="comment"></span>
-<a name="l00089"></a>00089 <span class="comment">/** Put a byte back into the buffer.  Decrement input offset. */</span>
-<a name="l00090"></a>00090 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a1d1f2039b769381d418ac1187b50b292">tidyBufUngetByte</a>( <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf, byte bv );
-<a name="l00091"></a>00091 
-<a name="l00092"></a>00092 
-<a name="l00093"></a>00093 <span class="comment">/**************</span>
-<a name="l00094"></a>00094 <span class="comment">   TIDY</span>
-<a name="l00095"></a>00095 <span class="comment">**************/</span>
-<a name="l00096"></a>00096 
-<a name="l00097"></a>00097 <span class="comment">/* Forward declarations</span>
-<a name="l00098"></a>00098 <span class="comment">*/</span>
-<a name="l00099"></a>00099 <span class="comment"></span>
-<a name="l00100"></a>00100 <span class="comment">/** Initialize a buffer input source */</span>
-<a name="l00101"></a>00101 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a73da3182aea89939af1d98504a3b2df0">tidyInitInputBuffer</a>( <a class="code" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a>* inp, <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00102"></a>00102 <span class="comment"></span>
-<a name="l00103"></a>00103 <span class="comment">/** Initialize a buffer output sink */</span>
-<a name="l00104"></a>00104 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb">tidyInitOutputBuffer</a>( <a class="code" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a>* outp, <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00105"></a>00105 
-<a name="l00106"></a>00106 <span class="preprocessor">#ifdef __cplusplus</span>
-<a name="l00107"></a>00107 <span class="preprocessor"></span>}
-<a name="l00108"></a>00108 <span class="preprocessor">#endif</span>
-<a name="l00109"></a>00109 <span class="preprocessor"></span><span class="preprocessor">#endif </span><span class="comment">/* __TIDY_BUFFIO_H__ */</span>
-<a name="l00110"></a>00110 
-<a name="l00111"></a>00111 <span class="comment">/*</span>
-<a name="l00112"></a>00112 <span class="comment"> * local variables:</span>
-<a name="l00113"></a>00113 <span class="comment"> * mode: c</span>
-<a name="l00114"></a>00114 <span class="comment"> * indent-tabs-mode: nil</span>
-<a name="l00115"></a>00115 <span class="comment"> * c-basic-offset: 4</span>
-<a name="l00116"></a>00116 <span class="comment"> * eval: (c-set-offset &#39;substatement-open 0)</span>
-<a name="l00117"></a>00117 <span class="comment"> * end:</span>
-<a name="l00118"></a>00118 <span class="comment"> */</span>
-</pre></div></div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="buffio_8h.html">buffio.h</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/classes.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/classes.html
deleted file mode 100644
index a721813..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/classes.html
+++ /dev/null
@@ -1,89 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Data Structure Index</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('classes.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">Data Structure Index</div>  </div>
-</div><!--header-->
-<div class="contents">
-<div class="qindex"><a class="qindex" href="#letter_T">T</a>&#160;|&#160;<a class="qindex" href="#letter__">_</a></div>
-<table style="margin: 10px; white-space: nowrap;" align="center" width="95%" border="0" cellspacing="0" cellpadding="0">
-<tr><td rowspan="2" valign="bottom"><a name="letter_T"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">&#160;&#160;T&#160;&#160;</div></td></tr></table>
-</td><td valign="top"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;&#160;&#160;</td><td rowspan="2" valign="bottom"><a name="letter__"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">&#160;&#160;_&#160;&#160;</div></td></tr></table>
-</td><td valign="top"><a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a>&#160;&#160;&#160;</td><td valign="top"><a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a>&#160;&#160;&#160;</td></tr>
-<tr><td valign="top"><a class="el" href="structTidyNode.html">TidyNode</a>&#160;&#160;&#160;</td><td valign="top"><a class="el" href="struct__TidyBuffer.html">_TidyBuffer</a>&#160;&#160;&#160;</td><td></td></tr>
-<tr><td valign="top"><a class="el" href="structTidyAttr.html">TidyAttr</a>&#160;&#160;&#160;</td><td valign="top"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;&#160;&#160;</td><td valign="top"><a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a>&#160;&#160;&#160;</td><td valign="top"><a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a>&#160;&#160;&#160;</td><td></td></tr>
-<tr><td></td><td></td><td></td><td></td><td></td></tr>
-</table>
-<div class="qindex"><a class="qindex" href="#letter_T">T</a>&#160;|&#160;<a class="qindex" href="#letter__">_</a></div>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/closed.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/closed.png
deleted file mode 100644
index b7d4bd9..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/closed.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/deprecated.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/deprecated.html
deleted file mode 100644
index 5f6aa0c..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/deprecated.html
+++ /dev/null
@@ -1,93 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Deprecated List</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('deprecated.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">Deprecated List </div>  </div>
-</div><!--header-->
-<div class="contents">
-<div class="textblock"><dl class="reflist">
-<dt><a class="anchor" id="_deprecated000003"></a>Group <a class="el" href="group__AttrGetAttributeName.html">AttrGetAttributeName</a>  </dt>
-<dd><p class="startdd">The functions tidyAttrGet{AttributeName} are deprecated and should be replaced by tidyAttrGetById. For instance, tidyAttrGetID( TidyNode tnod ) can be replaced by tidyAttrGetById( TidyNode tnod, TidyAttr_ID ). This avoids a potential name clash with tidyAttrGetId for case-insensitive languages.</p>
-<p class="enddd"></p>
-</dd>
-<dt><a class="anchor" id="_deprecated000002"></a>Group <a class="el" href="group__AttrIsAttributeName.html">AttrIsAttributeName</a>  </dt>
-<dd><p class="startdd">The functions tidyAttrIs{AttributeName} are deprecated and should be replaced by tidyAttrGetId.</p>
-<p class="enddd"></p>
-</dd>
-<dt><a class="anchor" id="_deprecated000001"></a>Group <a class="el" href="group__NodeIsElementName.html">NodeIsElementName</a>  </dt>
-<dd><p class="startdd">The functions tidyNodeIs{ElementName} are deprecated and should be replaced by tidyNodeGetId.</p>
-<p class="enddd"></p>
-</dd>
-</dl>
-</div></div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/doxygen.css b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/doxygen.css
deleted file mode 100644
index c151fde..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/doxygen.css
+++ /dev/null
@@ -1,1012 +0,0 @@
-/* The standard CSS for doxygen */
-
-body, table, div, p, dl {
-	font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
-	font-size: 13px;
-	line-height: 1.3;
-}
-
-/* @group Heading Levels */
-
-h1 {
-	font-size: 150%;
-}
-
-.title {
-	font-size: 150%;
-	font-weight: bold;
-	margin: 10px 2px;
-}
-
-h2 {
-	font-size: 120%;
-}
-
-h3 {
-	font-size: 100%;
-}
-
-dt {
-	font-weight: bold;
-}
-
-div.multicol {
-	-moz-column-gap: 1em;
-	-webkit-column-gap: 1em;
-	-moz-column-count: 3;
-	-webkit-column-count: 3;
-}
-
-p.startli, p.startdd, p.starttd {
-	margin-top: 2px;
-}
-
-p.endli {
-	margin-bottom: 0px;
-}
-
-p.enddd {
-	margin-bottom: 4px;
-}
-
-p.endtd {
-	margin-bottom: 2px;
-}
-
-/* @end */
-
-caption {
-	font-weight: bold;
-}
-
-span.legend {
-        font-size: 70%;
-        text-align: center;
-}
-
-h3.version {
-        font-size: 90%;
-        text-align: center;
-}
-
-div.qindex, div.navtab{
-	background-color: #EBEFF6;
-	border: 1px solid #A3B4D7;
-	text-align: center;
-}
-
-div.qindex, div.navpath {
-	width: 100%;
-	line-height: 140%;
-}
-
-div.navtab {
-	margin-right: 15px;
-}
-
-/* @group Link Styling */
-
-a {
-	color: #3D578C;
-	font-weight: normal;
-	text-decoration: none;
-}
-
-.contents a:visited {
-	color: #4665A2;
-}
-
-a:hover {
-	text-decoration: underline;
-}
-
-a.qindex {
-	font-weight: bold;
-}
-
-a.qindexHL {
-	font-weight: bold;
-	background-color: #9CAFD4;
-	color: #ffffff;
-	border: 1px double #869DCA;
-}
-
-.contents a.qindexHL:visited {
-        color: #ffffff;
-}
-
-a.el {
-	font-weight: bold;
-}
-
-a.elRef {
-}
-
-a.code, a.code:visited {
-	color: #4665A2; 
-}
-
-a.codeRef, a.codeRef:visited {
-	color: #4665A2; 
-}
-
-/* @end */
-
-dl.el {
-	margin-left: -1cm;
-}
-
-.fragment {
-	font-family: monospace, fixed;
-	font-size: 105%;
-}
-
-pre.fragment {
-	border: 1px solid #C4CFE5;
-	background-color: #FBFCFD;
-	padding: 4px 6px;
-	margin: 4px 8px 4px 2px;
-	overflow: auto;
-	word-wrap: break-word;
-	font-size:  9pt;
-	line-height: 125%;
-}
-
-div.ah {
-	background-color: black;
-	font-weight: bold;
-	color: #ffffff;
-	margin-bottom: 3px;
-	margin-top: 3px;
-	padding: 0.2em;
-	border: solid thin #333;
-	border-radius: 0.5em;
-	-webkit-border-radius: .5em;
-	-moz-border-radius: .5em;
-	box-shadow: 2px 2px 3px #999;
-	-webkit-box-shadow: 2px 2px 3px #999;
-	-moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
-	background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
-	background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000);
-}
-
-div.groupHeader {
-	margin-left: 16px;
-	margin-top: 12px;
-	font-weight: bold;
-}
-
-div.groupText {
-	margin-left: 16px;
-	font-style: italic;
-}
-
-body {
-	background-color: white;
-	color: black;
-        margin: 0;
-}
-
-div.contents {
-	margin-top: 10px;
-	margin-left: 8px;
-	margin-right: 8px;
-}
-
-td.indexkey {
-	background-color: #EBEFF6;
-	font-weight: bold;
-	border: 1px solid #C4CFE5;
-	margin: 2px 0px 2px 0;
-	padding: 2px 10px;
-        white-space: nowrap;
-        vertical-align: top;
-}
-
-td.indexvalue {
-	background-color: #EBEFF6;
-	border: 1px solid #C4CFE5;
-	padding: 2px 10px;
-	margin: 2px 0px;
-}
-
-tr.memlist {
-	background-color: #EEF1F7;
-}
-
-p.formulaDsp {
-	text-align: center;
-}
-
-img.formulaDsp {
-	
-}
-
-img.formulaInl {
-	vertical-align: middle;
-}
-
-div.center {
-	text-align: center;
-        margin-top: 0px;
-        margin-bottom: 0px;
-        padding: 0px;
-}
-
-div.center img {
-	border: 0px;
-}
-
-address.footer {
-	text-align: right;
-	padding-right: 12px;
-}
-
-img.footer {
-	border: 0px;
-	vertical-align: middle;
-}
-
-/* @group Code Colorization */
-
-span.keyword {
-	color: #008000
-}
-
-span.keywordtype {
-	color: #604020
-}
-
-span.keywordflow {
-	color: #e08000
-}
-
-span.comment {
-	color: #800000
-}
-
-span.preprocessor {
-	color: #806020
-}
-
-span.stringliteral {
-	color: #002080
-}
-
-span.charliteral {
-	color: #008080
-}
-
-span.vhdldigit { 
-	color: #ff00ff 
-}
-
-span.vhdlchar { 
-	color: #000000 
-}
-
-span.vhdlkeyword { 
-	color: #700070 
-}
-
-span.vhdllogic { 
-	color: #ff0000 
-}
-
-blockquote {
-        background-color: #F7F8FB;
-        border-left: 2px solid #9CAFD4;
-        margin: 0 24px 0 4px;
-        padding: 0 12px 0 16px;
-}
-
-/* @end */
-
-/*
-.search {
-	color: #003399;
-	font-weight: bold;
-}
-
-form.search {
-	margin-bottom: 0px;
-	margin-top: 0px;
-}
-
-input.search {
-	font-size: 75%;
-	color: #000080;
-	font-weight: normal;
-	background-color: #e8eef2;
-}
-*/
-
-td.tiny {
-	font-size: 75%;
-}
-
-.dirtab {
-	padding: 4px;
-	border-collapse: collapse;
-	border: 1px solid #A3B4D7;
-}
-
-th.dirtab {
-	background: #EBEFF6;
-	font-weight: bold;
-}
-
-hr {
-	height: 0px;
-	border: none;
-	border-top: 1px solid #4A6AAA;
-}
-
-hr.footer {
-	height: 1px;
-}
-
-/* @group Member Descriptions */
-
-table.memberdecls {
-	border-spacing: 0px;
-	padding: 0px;
-}
-
-.mdescLeft, .mdescRight,
-.memItemLeft, .memItemRight,
-.memTemplItemLeft, .memTemplItemRight, .memTemplParams {
-	background-color: #F9FAFC;
-	border: none;
-	margin: 4px;
-	padding: 1px 0 0 8px;
-}
-
-.mdescLeft, .mdescRight {
-	padding: 0px 8px 4px 8px;
-	color: #555;
-}
-
-.memItemLeft, .memItemRight, .memTemplParams {
-	border-top: 1px solid #C4CFE5;
-}
-
-.memItemLeft, .memTemplItemLeft {
-        white-space: nowrap;
-}
-
-.memItemRight {
-	width: 100%;
-}
-
-.memTemplParams {
-	color: #4665A2;
-        white-space: nowrap;
-}
-
-/* @end */
-
-/* @group Member Details */
-
-/* Styles for detailed member documentation */
-
-.memtemplate {
-	font-size: 80%;
-	color: #4665A2;
-	font-weight: normal;
-	margin-left: 9px;
-}
-
-.memnav {
-	background-color: #EBEFF6;
-	border: 1px solid #A3B4D7;
-	text-align: center;
-	margin: 2px;
-	margin-right: 15px;
-	padding: 2px;
-}
-
-.mempage {
-	width: 100%;
-}
-
-.memitem {
-	padding: 0;
-	margin-bottom: 10px;
-	margin-right: 5px;
-}
-
-.memname {
-        white-space: nowrap;
-        font-weight: bold;
-        margin-left: 6px;
-}
-
-.memproto, dl.reflist dt {
-        border-top: 1px solid #A8B8D9;
-        border-left: 1px solid #A8B8D9;
-        border-right: 1px solid #A8B8D9;
-        padding: 6px 0px 6px 0px;
-        color: #253555;
-        font-weight: bold;
-        text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
-        /* opera specific markup */
-        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
-        border-top-right-radius: 8px;
-        border-top-left-radius: 8px;
-        /* firefox specific markup */
-        -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
-        -moz-border-radius-topright: 8px;
-        -moz-border-radius-topleft: 8px;
-        /* webkit specific markup */
-        -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
-        -webkit-border-top-right-radius: 8px;
-        -webkit-border-top-left-radius: 8px;
-        background-image:url('nav_f.png');
-        background-repeat:repeat-x;
-        background-color: #E2E8F2;
-
-}
-
-.memdoc, dl.reflist dd {
-        border-bottom: 1px solid #A8B8D9;      
-        border-left: 1px solid #A8B8D9;      
-        border-right: 1px solid #A8B8D9; 
-        padding: 2px 5px;
-        background-color: #FBFCFD;
-        border-top-width: 0;
-        /* opera specific markup */
-        border-bottom-left-radius: 8px;
-        border-bottom-right-radius: 8px;
-        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
-        /* firefox specific markup */
-        -moz-border-radius-bottomleft: 8px;
-        -moz-border-radius-bottomright: 8px;
-        -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
-        background-image: -moz-linear-gradient(center top, #FFFFFF 0%, #FFFFFF 60%, #F7F8FB 95%, #EEF1F7);
-        /* webkit specific markup */
-        -webkit-border-bottom-left-radius: 8px;
-        -webkit-border-bottom-right-radius: 8px;
-        -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
-        background-image: -webkit-gradient(linear,center top,center bottom,from(#FFFFFF), color-stop(0.6,#FFFFFF), color-stop(0.60,#FFFFFF), color-stop(0.95,#F7F8FB), to(#EEF1F7));
-}
-
-dl.reflist dt {
-        padding: 5px;
-}
-
-dl.reflist dd {
-        margin: 0px 0px 10px 0px;
-        padding: 5px;
-}
-
-.paramkey {
-	text-align: right;
-}
-
-.paramtype {
-	white-space: nowrap;
-}
-
-.paramname {
-	color: #602020;
-	white-space: nowrap;
-}
-.paramname em {
-	font-style: normal;
-}
-
-.params, .retval, .exception, .tparams {
-        border-spacing: 6px 2px;
-}       
-
-.params .paramname, .retval .paramname {
-        font-weight: bold;
-        vertical-align: top;
-}
-        
-.params .paramtype {
-        font-style: italic;
-        vertical-align: top;
-}       
-        
-.params .paramdir {
-        font-family: "courier new",courier,monospace;
-        vertical-align: top;
-}
-
-
-
-
-/* @end */
-
-/* @group Directory (tree) */
-
-/* for the tree view */
-
-.ftvtree {
-	font-family: sans-serif;
-	margin: 0px;
-}
-
-/* these are for tree view when used as main index */
-
-.directory {
-	font-size: 9pt;
-	font-weight: bold;
-	margin: 5px;
-}
-
-.directory h3 {
-	margin: 0px;
-	margin-top: 1em;
-	font-size: 11pt;
-}
-
-/*
-The following two styles can be used to replace the root node title
-with an image of your choice.  Simply uncomment the next two styles,
-specify the name of your image and be sure to set 'height' to the
-proper pixel height of your image.
-*/
-
-/*
-.directory h3.swap {
-	height: 61px;
-	background-repeat: no-repeat;
-	background-image: url("yourimage.gif");
-}
-.directory h3.swap span {
-	display: none;
-}
-*/
-
-.directory > h3 {
-	margin-top: 0;
-}
-
-.directory p {
-	margin: 0px;
-	white-space: nowrap;
-}
-
-.directory div {
-	display: none;
-	margin: 0px;
-}
-
-.directory img {
-	vertical-align: -30%;
-}
-
-/* these are for tree view when not used as main index */
-
-.directory-alt {
-	font-size: 100%;
-	font-weight: bold;
-}
-
-.directory-alt h3 {
-	margin: 0px;
-	margin-top: 1em;
-	font-size: 11pt;
-}
-
-.directory-alt > h3 {
-	margin-top: 0;
-}
-
-.directory-alt p {
-	margin: 0px;
-	white-space: nowrap;
-}
-
-.directory-alt div {
-	display: none;
-	margin: 0px;
-}
-
-.directory-alt img {
-	vertical-align: -30%;
-}
-
-/* @end */
-
-div.dynheader {
-        margin-top: 8px;
-}
-
-address {
-	font-style: normal;
-	color: #2A3D61;
-}
-
-table.doxtable {
-	border-collapse:collapse;
-        margin-top: 4px;
-        margin-bottom: 4px;
-}
-
-table.doxtable td, table.doxtable th {
-	border: 1px solid #2D4068;
-	padding: 3px 7px 2px;
-}
-
-table.doxtable th {
-	background-color: #374F7F;
-	color: #FFFFFF;
-	font-size: 110%;
-	padding-bottom: 4px;
-	padding-top: 5px;
-}
-
-table.fieldtable {
-        width: 100%;
-        margin-bottom: 10px;
-        border: 1px solid #A8B8D9;
-        border-spacing: 0px;
-        -moz-border-radius: 4px;
-        -webkit-border-radius: 4px;
-        border-radius: 4px;
-        -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
-        -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
-        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
-}
-
-.fieldtable td, .fieldtable th {
-        padding: 3px 7px 2px;
-}
-
-.fieldtable td.fieldtype, .fieldtable td.fieldname {
-        white-space: nowrap;
-        border-right: 1px solid #A8B8D9;
-        border-bottom: 1px solid #A8B8D9;
-        vertical-align: top;
-}
-
-.fieldtable td.fielddoc {
-        border-bottom: 1px solid #A8B8D9;
-        width: 100%;
-}
-
-.fieldtable tr:last-child td {
-        border-bottom: none;
-}
-
-.fieldtable th {
-        background-image:url('nav_f.png');
-        background-repeat:repeat-x;
-        background-color: #E2E8F2;
-        font-size: 90%;
-        color: #253555;
-        padding-bottom: 4px;
-        padding-top: 5px;
-        text-align:left;
-        -moz-border-radius-topleft: 4px;
-        -moz-border-radius-topright: 4px;
-        -webkit-border-top-left-radius: 4px;
-        -webkit-border-top-right-radius: 4px;
-        border-top-left-radius: 4px;
-        border-top-right-radius: 4px;
-        border-bottom: 1px solid #A8B8D9;
-}
-
-
-.tabsearch {
-	top: 0px;
-	left: 10px;
-	height: 36px;
-	background-image: url('tab_b.png');
-	z-index: 101;
-	overflow: hidden;
-	font-size: 13px;
-}
-
-.navpath ul
-{
-	font-size: 11px;
-	background-image:url('tab_b.png');
-	background-repeat:repeat-x;
-	height:30px;
-	line-height:30px;
-	color:#8AA0CC;
-	border:solid 1px #C2CDE4;
-	overflow:hidden;
-	margin:0px;
-	padding:0px;
-}
-
-.navpath li
-{
-	list-style-type:none;
-	float:left;
-	padding-left:10px;
-	padding-right:15px;
-	background-image:url('bc_s.png');
-	background-repeat:no-repeat;
-	background-position:right;
-	color:#364D7C;
-}
-
-.navpath li.navelem a
-{
-	height:32px;
-	display:block;
-	text-decoration: none;
-	outline: none;
-}
-
-.navpath li.navelem a:hover
-{
-	color:#6884BD;
-}
-
-.navpath li.footer
-{
-        list-style-type:none;
-        float:right;
-        padding-left:10px;
-        padding-right:15px;
-        background-image:none;
-        background-repeat:no-repeat;
-        background-position:right;
-        color:#364D7C;
-        font-size: 8pt;
-}
-
-
-div.summary
-{
-	float: right;
-	font-size: 8pt;
-	padding-right: 5px;
-	width: 50%;
-	text-align: right;
-}       
-
-div.summary a
-{
-	white-space: nowrap;
-}
-
-div.ingroups
-{
-	margin-left: 5px;
-	font-size: 8pt;
-	padding-left: 5px;
-	width: 50%;
-	text-align: left;
-}
-
-div.ingroups a
-{
-	white-space: nowrap;
-}
-
-div.header
-{
-        background-image:url('nav_h.png');
-        background-repeat:repeat-x;
-	background-color: #F9FAFC;
-	margin:  0px;
-	border-bottom: 1px solid #C4CFE5;
-}
-
-div.headertitle
-{
-	padding: 5px 5px 5px 7px;
-}
-
-dl
-{
-        padding: 0 0 0 10px;
-}
-
-/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */
-dl.section
-{
-        border-left:4px solid;
-        padding: 0 0 0 6px;
-}
-
-dl.note
-{
-        border-color: #D0C000;
-}
-
-dl.warning, dl.attention
-{
-        border-color: #FF0000;
-}
-
-dl.pre, dl.post, dl.invariant
-{
-        border-color: #00D000;
-}
-
-dl.deprecated
-{
-        border-color: #505050;
-}
-
-dl.todo
-{
-        border-color: #00C0E0;
-}
-
-dl.test
-{
-        border-color: #3030E0;
-}
-
-dl.bug
-{
-        border-color: #C08050;
-}
-
-dl.section dd {
-	margin-bottom: 6px;
-}
-
-
-#projectlogo
-{
-	text-align: center;
-	vertical-align: bottom;
-	border-collapse: separate;
-}
- 
-#projectlogo img
-{ 
-	border: 0px none;
-}
- 
-#projectname
-{
-	font: 300% Tahoma, Arial,sans-serif;
-	margin: 0px;
-	padding: 2px 0px;
-}
-    
-#projectbrief
-{
-	font: 120% Tahoma, Arial,sans-serif;
-	margin: 0px;
-	padding: 0px;
-}
-
-#projectnumber
-{
-	font: 50% Tahoma, Arial,sans-serif;
-	margin: 0px;
-	padding: 0px;
-}
-
-#titlearea
-{
-	padding: 0px;
-	margin: 0px;
-	width: 100%;
-	border-bottom: 1px solid #5373B4;
-}
-
-.image
-{
-        text-align: center;
-}
-
-.dotgraph
-{
-        text-align: center;
-}
-
-.mscgraph
-{
-        text-align: center;
-}
-
-.caption
-{
-	font-weight: bold;
-}
-
-div.zoom
-{
-	border: 1px solid #90A5CE;
-}
-
-dl.citelist {
-        margin-bottom:50px;
-}
-
-dl.citelist dt {
-        color:#334975;
-        float:left;
-        font-weight:bold;
-        margin-right:10px;
-        padding:5px;
-}
-
-dl.citelist dd {
-        margin:2px 0;
-        padding:5px 0;
-}
-
-div.toc {
-        padding: 14px 25px;
-        background-color: #F4F6FA;
-        border: 1px solid #D8DFEE;
-        border-radius: 7px 7px 7px 7px;
-        float: right;
-        height: auto;
-        margin: 0 20px 10px 10px;
-        width: 200px;
-}
-
-div.toc li {
-        background: url("bdwn.png") no-repeat scroll 0 5px transparent;
-        font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif;
-        margin-top: 5px;
-        padding-left: 10px;
-        padding-top: 2px;
-}
-
-div.toc h3 {
-        font: bold 12px/1.2 Arial,FreeSans,sans-serif;
-	color: #4665A2;
-        border-bottom: 0 none;
-        margin: 0;
-}
-
-div.toc ul {
-        list-style: none outside none;
-        border: medium none;
-        padding: 0px;
-}       
-
-div.toc li.level1 {
-        margin-left: 0px;
-}
-
-div.toc li.level2 {
-        margin-left: 15px;
-}
-
-div.toc li.level3 {
-        margin-left: 30px;
-}
-
-div.toc li.level4 {
-        margin-left: 45px;
-}
-
-
-@media print
-{
-  #top { display: none; }
-  #side-nav { display: none; }
-  #nav-path { display: none; }
-  body { overflow:visible; }
-  h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
-  .summary { display: none; }
-  .memitem { page-break-inside: avoid; }
-  #doc-content
-  {
-    margin-left:0 !important;
-    height:auto !important;
-    width:auto !important;
-    overflow:inherit;
-    display:inline;
-  }
-  pre.fragment
-  {
-    overflow: visible;
-    text-wrap: unrestricted;
-    white-space: -moz-pre-wrap; /* Moz */
-    white-space: -pre-wrap; /* Opera 4-6 */
-    white-space: -o-pre-wrap; /* Opera 7 */
-    white-space: pre-wrap; /* CSS3  */
-    word-wrap: break-word; /* IE 5.5+ */
-  }
-}
-
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/doxygen.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/doxygen.png
deleted file mode 100644
index 635ed52..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/doxygen.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/files.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/files.html
deleted file mode 100644
index 9364f78..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/files.html
+++ /dev/null
@@ -1,85 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: File List</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('files.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">File List</div>  </div>
-</div><!--header-->
-<div class="contents">
-<div class="textblock">Here is a list of all documented files with brief descriptions:</div><table>
-  <tr><td class="indexkey"><a class="el" href="buffio_8h.html">buffio.h</a> <a href="buffio_8h_source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><b>platform.h</b> <a href="platform_8h_source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="tidy_8h.html">tidy.h</a> <a href="tidy_8h_source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><b>tidyenum.h</b> <a href="tidyenum_8h_source.html">[code]</a></td><td class="indexvalue"></td></tr>
-</table>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/files.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/files.js
deleted file mode 100644
index cd6740b..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/files.js
+++ /dev/null
@@ -1,7 +0,0 @@
-var files =
-[
-    [ "buffio.h", "buffio_8h.html", "buffio_8h" ],
-    [ "platform.h", null, null ],
-    [ "tidy.h", "tidy_8h.html", "tidy_8h" ],
-    [ "tidyenum.h", null, null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2blank.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2blank.png
deleted file mode 100644
index 3b7a29c..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2blank.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2doc.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2doc.png
deleted file mode 100644
index 310e441..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2doc.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2folderclosed.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2folderclosed.png
deleted file mode 100644
index 79aeaf7..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2folderclosed.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2folderopen.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2folderopen.png
deleted file mode 100644
index 1b703dd..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2folderopen.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2lastnode.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2lastnode.png
deleted file mode 100644
index 3b7a29c..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2lastnode.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2link.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2link.png
deleted file mode 100644
index 310e441..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2link.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2mlastnode.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2mlastnode.png
deleted file mode 100644
index ec51f17..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2mlastnode.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2mnode.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2mnode.png
deleted file mode 100644
index ec51f17..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2mnode.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2node.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2node.png
deleted file mode 100644
index 3b7a29c..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2node.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2plastnode.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2plastnode.png
deleted file mode 100644
index 270a965..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2plastnode.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2pnode.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2pnode.png
deleted file mode 100644
index 270a965..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2pnode.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2splitbar.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2splitbar.png
deleted file mode 100644
index f60a527..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2splitbar.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2vertline.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2vertline.png
deleted file mode 100644
index 3b7a29c..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/ftv2vertline.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/functions.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/functions.html
deleted file mode 100644
index 274e683..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/functions.html
+++ /dev/null
@@ -1,119 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Data Fields</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('functions.html','');
-</script>
-<div id="doc-content">
-<div class="contents">
-<div class="textblock">Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:</div><ul>
-<li>alloc()
-: <a class="el" href="struct__TidyAllocatorVtbl.html#ac89bb7f5b58fcb5b31a1560705f3b817">_TidyAllocatorVtbl</a>
-</li>
-<li>allocated
-: <a class="el" href="struct__TidyBuffer.html#a523a1f5f2a1b0333d70b9d8a5a52de13">_TidyBuffer</a>
-</li>
-<li>allocator
-: <a class="el" href="struct__TidyBuffer.html#ab6655c52ed81490e8016976a4810a330">_TidyBuffer</a>
-</li>
-<li>bp
-: <a class="el" href="struct__TidyBuffer.html#a2b1c3814410eefbe2168b248485eea91">_TidyBuffer</a>
-</li>
-<li>eof
-: <a class="el" href="struct__TidyInputSource.html#af90ba85f6caffb1321a8fe3ef4b7bebb">_TidyInputSource</a>
-</li>
-<li>getByte
-: <a class="el" href="struct__TidyInputSource.html#a4c318270e25e2e4dd9506cb04542b7d8">_TidyInputSource</a>
-</li>
-<li>next
-: <a class="el" href="struct__TidyBuffer.html#af607eaeb44ae6d8f2371e1e05b016caf">_TidyBuffer</a>
-</li>
-<li>putByte
-: <a class="el" href="struct__TidyOutputSink.html#a0b392463d9767dc9fbed2f524fbe7407">_TidyOutputSink</a>
-</li>
-<li>realloc()
-: <a class="el" href="struct__TidyAllocatorVtbl.html#a0cad0dd2aa75a20573fc46f25460a5cc">_TidyAllocatorVtbl</a>
-</li>
-<li>sinkData
-: <a class="el" href="struct__TidyOutputSink.html#a8ea61dfa1ce4ba41a7a9c50b7729ab8a">_TidyOutputSink</a>
-</li>
-<li>size
-: <a class="el" href="struct__TidyBuffer.html#a227728492f6266dec940bcc541046cd9">_TidyBuffer</a>
-</li>
-<li>sourceData
-: <a class="el" href="struct__TidyInputSource.html#a19bd9d8877bfc702ceae4e174d0b07d4">_TidyInputSource</a>
-</li>
-<li>ungetByte
-: <a class="el" href="struct__TidyInputSource.html#a8bb61c749e1295207cd92752e63ae505">_TidyInputSource</a>
-</li>
-<li>void()
-: <a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">_TidyAllocatorVtbl</a>
-</li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/functions_func.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/functions_func.html
deleted file mode 100644
index 8daa20e..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/functions_func.html
+++ /dev/null
@@ -1,86 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Data Fields - Functions</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('functions_func.html','');
-</script>
-<div id="doc-content">
-<div class="contents">
-&#160;<ul>
-<li>alloc()
-: <a class="el" href="struct__TidyAllocatorVtbl.html#ac89bb7f5b58fcb5b31a1560705f3b817">_TidyAllocatorVtbl</a>
-</li>
-<li>realloc()
-: <a class="el" href="struct__TidyAllocatorVtbl.html#a0cad0dd2aa75a20573fc46f25460a5cc">_TidyAllocatorVtbl</a>
-</li>
-<li>void()
-: <a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">_TidyAllocatorVtbl</a>
-</li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/functions_vars.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/functions_vars.html
deleted file mode 100644
index b74b6fc..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/functions_vars.html
+++ /dev/null
@@ -1,110 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Data Fields - Variables</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('functions_vars.html','');
-</script>
-<div id="doc-content">
-<div class="contents">
-&#160;<ul>
-<li>allocated
-: <a class="el" href="struct__TidyBuffer.html#a523a1f5f2a1b0333d70b9d8a5a52de13">_TidyBuffer</a>
-</li>
-<li>allocator
-: <a class="el" href="struct__TidyBuffer.html#ab6655c52ed81490e8016976a4810a330">_TidyBuffer</a>
-</li>
-<li>bp
-: <a class="el" href="struct__TidyBuffer.html#a2b1c3814410eefbe2168b248485eea91">_TidyBuffer</a>
-</li>
-<li>eof
-: <a class="el" href="struct__TidyInputSource.html#af90ba85f6caffb1321a8fe3ef4b7bebb">_TidyInputSource</a>
-</li>
-<li>getByte
-: <a class="el" href="struct__TidyInputSource.html#a4c318270e25e2e4dd9506cb04542b7d8">_TidyInputSource</a>
-</li>
-<li>next
-: <a class="el" href="struct__TidyBuffer.html#af607eaeb44ae6d8f2371e1e05b016caf">_TidyBuffer</a>
-</li>
-<li>putByte
-: <a class="el" href="struct__TidyOutputSink.html#a0b392463d9767dc9fbed2f524fbe7407">_TidyOutputSink</a>
-</li>
-<li>sinkData
-: <a class="el" href="struct__TidyOutputSink.html#a8ea61dfa1ce4ba41a7a9c50b7729ab8a">_TidyOutputSink</a>
-</li>
-<li>size
-: <a class="el" href="struct__TidyBuffer.html#a227728492f6266dec940bcc541046cd9">_TidyBuffer</a>
-</li>
-<li>sourceData
-: <a class="el" href="struct__TidyInputSource.html#a19bd9d8877bfc702ceae4e174d0b07d4">_TidyInputSource</a>
-</li>
-<li>ungetByte
-: <a class="el" href="struct__TidyInputSource.html#a8bb61c749e1295207cd92752e63ae505">_TidyInputSource</a>
-</li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals.html
deleted file mode 100644
index 55aeef4..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals.html
+++ /dev/null
@@ -1,425 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Globals</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('globals.html','');
-</script>
-<div id="doc-content">
-<div class="contents">
-<div class="textblock">Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:</div>
-
-<h3><a class="anchor" id="index_e"></a>- e -</h3><ul>
-<li>EndOfStream
-: <a class="el" href="group__IO.html#ga9a078b706ec6f37cce40958f6f68585a">tidy.h</a>
-</li>
-</ul>
-
-
-<h3><a class="anchor" id="index_t"></a>- t -</h3><ul>
-<li>tidyAccessWarningCount()
-: <a class="el" href="group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb">tidy.h</a>
-</li>
-<li>TidyAllocator
-: <a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">tidy.h</a>
-</li>
-<li>TidyAllocatorVtbl
-: <a class="el" href="group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8">tidy.h</a>
-</li>
-<li>tidyBufAlloc()
-: <a class="el" href="buffio_8h.html#a896654bd99113bfe5e86b924836aacc3">buffio.h</a>
-</li>
-<li>tidyBufAllocWithAllocator()
-: <a class="el" href="buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826">buffio.h</a>
-</li>
-<li>tidyBufAppend()
-: <a class="el" href="buffio_8h.html#ad59b32f81789b634758274f34be4d25b">buffio.h</a>
-</li>
-<li>tidyBufAttach()
-: <a class="el" href="buffio_8h.html#ac5909e78d98583cb245dd2004469bb93">buffio.h</a>
-</li>
-<li>tidyBufCheckAlloc()
-: <a class="el" href="buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2">buffio.h</a>
-</li>
-<li>tidyBufClear()
-: <a class="el" href="buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911">buffio.h</a>
-</li>
-<li>tidyBufDetach()
-: <a class="el" href="buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903">buffio.h</a>
-</li>
-<li>tidyBufEndOfInput()
-: <a class="el" href="buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0">buffio.h</a>
-</li>
-<li>tidyBufFree()
-: <a class="el" href="buffio_8h.html#a65aae9ae4b499e62038700f4792849fc">buffio.h</a>
-</li>
-<li>tidyBufGetByte()
-: <a class="el" href="buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb">buffio.h</a>
-</li>
-<li>tidyBufInit()
-: <a class="el" href="buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b">buffio.h</a>
-</li>
-<li>tidyBufInitWithAllocator()
-: <a class="el" href="buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e">buffio.h</a>
-</li>
-<li>tidyBufPopByte()
-: <a class="el" href="buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6">buffio.h</a>
-</li>
-<li>tidyBufPutByte()
-: <a class="el" href="buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1">buffio.h</a>
-</li>
-<li>tidyBufUngetByte()
-: <a class="el" href="buffio_8h.html#a1d1f2039b769381d418ac1187b50b292">buffio.h</a>
-</li>
-<li>tidyCleanAndRepair()
-: <a class="el" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidy.h</a>
-</li>
-<li>tidyConfigErrorCount()
-: <a class="el" href="group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988">tidy.h</a>
-</li>
-<li>tidyDetectedGenericXml()
-: <a class="el" href="group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2">tidy.h</a>
-</li>
-<li>tidyDetectedHtmlVersion()
-: <a class="el" href="group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443">tidy.h</a>
-</li>
-<li>tidyDetectedXhtml()
-: <a class="el" href="group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d">tidy.h</a>
-</li>
-<li>TidyEOFFunc
-: <a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">tidy.h</a>
-</li>
-<li>tidyErrorCount()
-: <a class="el" href="group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d">tidy.h</a>
-</li>
-<li>tidyErrorSummary()
-: <a class="el" href="group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70">tidy.h</a>
-</li>
-<li>TidyFree
-: <a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">tidy.h</a>
-</li>
-<li>tidyGeneralInfo()
-: <a class="el" href="group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971">tidy.h</a>
-</li>
-<li>tidyGetAppData()
-: <a class="el" href="group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504">tidy.h</a>
-</li>
-<li>tidyGetByte()
-: <a class="el" href="group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b">tidy.h</a>
-</li>
-<li>TidyGetByteFunc
-: <a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">tidy.h</a>
-</li>
-<li>tidyGetNextOption()
-: <a class="el" href="group__Configuration.html#ga1a3088dacc539487e00f1eb4009dafc0">tidy.h</a>
-</li>
-<li>tidyGetOption()
-: <a class="el" href="group__Configuration.html#ga030c695d6407b2756856eb1862642cfe">tidy.h</a>
-</li>
-<li>tidyGetOptionByName()
-: <a class="el" href="group__Configuration.html#gaeae2e147645697fc54234ff2526a8108">tidy.h</a>
-</li>
-<li>tidyGetOptionList()
-: <a class="el" href="group__Configuration.html#gab92a35ffbd3b0b668534d63f94d2486f">tidy.h</a>
-</li>
-<li>tidyInitInputBuffer()
-: <a class="el" href="buffio_8h.html#a73da3182aea89939af1d98504a3b2df0">buffio.h</a>
-</li>
-<li>tidyInitOutputBuffer()
-: <a class="el" href="buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb">buffio.h</a>
-</li>
-<li>tidyInitSink()
-: <a class="el" href="group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4">tidy.h</a>
-</li>
-<li>tidyInitSource()
-: <a class="el" href="group__IO.html#gab446af273e331cb0440dd01b6990d2d0">tidy.h</a>
-</li>
-<li>TidyInputSource
-: <a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">tidy.h</a>
-</li>
-<li>tidyIsEOF()
-: <a class="el" href="group__IO.html#ga399df5ba17614205964a665f7b1726a6">tidy.h</a>
-</li>
-<li>tidyLoadConfig()
-: <a class="el" href="group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a">tidy.h</a>
-</li>
-<li>tidyLoadConfigEnc()
-: <a class="el" href="group__Basic.html#gac677de148c6f00fc96a682c21433ab1c">tidy.h</a>
-</li>
-<li>TidyMalloc
-: <a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">tidy.h</a>
-</li>
-<li>TidyOptCallback
-: <a class="el" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">tidy.h</a>
-</li>
-<li>tidyOptCopyConfig()
-: <a class="el" href="group__Configuration.html#ga0b6cb26ab5dbbe0a0841d605fbd06fad">tidy.h</a>
-</li>
-<li>tidyOptDiffThanDefault()
-: <a class="el" href="group__Configuration.html#ga083cb42d6f4413604240b5c1b3aa2070">tidy.h</a>
-</li>
-<li>tidyOptDiffThanSnapshot()
-: <a class="el" href="group__Configuration.html#ga793bc9e177aa90301802e44c4fc22e0e">tidy.h</a>
-</li>
-<li>tidyOptGetBool()
-: <a class="el" href="group__Configuration.html#ga09e6c999e9e7ebc94ea3d9cf5d674125">tidy.h</a>
-</li>
-<li>tidyOptGetCategory()
-: <a class="el" href="group__Configuration.html#ga1d8b72e64e4d949dc21599fa788e842f">tidy.h</a>
-</li>
-<li>tidyOptGetCurrPick()
-: <a class="el" href="group__Configuration.html#ga0785047cc73d5fbc88691861a0fa9c78">tidy.h</a>
-</li>
-<li>tidyOptGetDeclTagList()
-: <a class="el" href="group__Configuration.html#ga55f30cf9e507f8fc66330ec3b0132620">tidy.h</a>
-</li>
-<li>tidyOptGetDefault()
-: <a class="el" href="group__Configuration.html#gab9e02c9927fe2c382ec5f81b4acf9cb4">tidy.h</a>
-</li>
-<li>tidyOptGetDefaultBool()
-: <a class="el" href="group__Configuration.html#gadadea4da66e3718e02b720c2b59d170b">tidy.h</a>
-</li>
-<li>tidyOptGetDefaultInt()
-: <a class="el" href="group__Configuration.html#gafc8df35e864dd3a24f23aca3c2f8bd9d">tidy.h</a>
-</li>
-<li>tidyOptGetDoc()
-: <a class="el" href="group__Configuration.html#gafca3ed506463e192187133ff646a643d">tidy.h</a>
-</li>
-<li>tidyOptGetDocLinksList()
-: <a class="el" href="group__Configuration.html#gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f">tidy.h</a>
-</li>
-<li>tidyOptGetEncName()
-: <a class="el" href="group__Configuration.html#ga47f8502cc202fc7423937647957955a3">tidy.h</a>
-</li>
-<li>tidyOptGetId()
-: <a class="el" href="group__Configuration.html#ga51cf095b76921b4e290e14814998f096">tidy.h</a>
-</li>
-<li>tidyOptGetIdForName()
-: <a class="el" href="group__Configuration.html#ga500f31ba81d015b8ce9dad6f2a6ade75">tidy.h</a>
-</li>
-<li>tidyOptGetInt()
-: <a class="el" href="group__Configuration.html#ga7ff683612d446b07318517e564cccc7a">tidy.h</a>
-</li>
-<li>tidyOptGetName()
-: <a class="el" href="group__Configuration.html#gaf370cd2ea113747f50da185fda24adcb">tidy.h</a>
-</li>
-<li>tidyOptGetNextDeclTag()
-: <a class="el" href="group__Configuration.html#gacec933eef8f9eec3dfa4382e05cab251">tidy.h</a>
-</li>
-<li>tidyOptGetNextDocLinks()
-: <a class="el" href="group__Configuration.html#ga1db79a95067d6364c02263d9492fa9e8">tidy.h</a>
-</li>
-<li>tidyOptGetNextPick()
-: <a class="el" href="group__Configuration.html#gad1366c5c458f38d2a9c6a6335e6704d9">tidy.h</a>
-</li>
-<li>tidyOptGetPickList()
-: <a class="el" href="group__Configuration.html#ga31f815fe2b5bf1e00d6b50be62edd0ab">tidy.h</a>
-</li>
-<li>tidyOptGetType()
-: <a class="el" href="group__Configuration.html#ga06e2685cc2950b182ff2f7136d170a34">tidy.h</a>
-</li>
-<li>tidyOptGetValue()
-: <a class="el" href="group__Configuration.html#ga0fbe23ab1e4ec374fa38e6f514617e4d">tidy.h</a>
-</li>
-<li>tidyOptIsReadOnly()
-: <a class="el" href="group__Configuration.html#ga6aba2ccdb1237a70f5fe1393fee0ce4d">tidy.h</a>
-</li>
-<li>tidyOptParseValue()
-: <a class="el" href="group__Configuration.html#gad09fbcbbaf83fbf93e0d7be9c9bb30c0">tidy.h</a>
-</li>
-<li>tidyOptResetAllToDefault()
-: <a class="el" href="group__Configuration.html#ga874ce26884f0eeaf692c30758688888a">tidy.h</a>
-</li>
-<li>tidyOptResetToDefault()
-: <a class="el" href="group__Configuration.html#ga2aa45ad67758ca0b18d14eafa37fe080">tidy.h</a>
-</li>
-<li>tidyOptResetToSnapshot()
-: <a class="el" href="group__Configuration.html#gae6212b8f32990763cc18a6d3f05eb191">tidy.h</a>
-</li>
-<li>tidyOptSaveFile()
-: <a class="el" href="group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca">tidy.h</a>
-</li>
-<li>tidyOptSaveSink()
-: <a class="el" href="group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee">tidy.h</a>
-</li>
-<li>tidyOptSetBool()
-: <a class="el" href="group__Configuration.html#gac9de7e155bea5c28713f2bfb93614472">tidy.h</a>
-</li>
-<li>tidyOptSetInt()
-: <a class="el" href="group__Configuration.html#gad9e75a64c8dcbc54e791959cf934e1ad">tidy.h</a>
-</li>
-<li>tidyOptSetValue()
-: <a class="el" href="group__Configuration.html#gaf37bdad3b6809d8cb78e7d6316d4ba69">tidy.h</a>
-</li>
-<li>tidyOptSnapshot()
-: <a class="el" href="group__Configuration.html#ga4beb2c73c90c3e2ae589c2642478cebd">tidy.h</a>
-</li>
-<li>TidyOutputSink
-: <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">tidy.h</a>
-</li>
-<li>TidyPanic
-: <a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">tidy.h</a>
-</li>
-<li>tidyParseBuffer()
-: <a class="el" href="group__Parse.html#gaa28ce34c95750f150205843885317851">tidy.h</a>
-</li>
-<li>tidyParseFile()
-: <a class="el" href="group__Parse.html#ga5ec263f2e430dd9c9e10437f067b2a28">tidy.h</a>
-</li>
-<li>tidyParseSource()
-: <a class="el" href="group__Parse.html#gaa65dad2a4ca5fa97d267ddefe1180e0e">tidy.h</a>
-</li>
-<li>tidyParseStdin()
-: <a class="el" href="group__Parse.html#ga96b41ff6e6a7f9d0b9b0e901e33ad31d">tidy.h</a>
-</li>
-<li>tidyParseString()
-: <a class="el" href="group__Parse.html#ga50c02fa244dcd120ae339719c2132ff9">tidy.h</a>
-</li>
-<li>tidyPutByte()
-: <a class="el" href="group__IO.html#ga2a34772782d7b786e37012fce4cd2425">tidy.h</a>
-</li>
-<li>TidyPutByteFunc
-: <a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">tidy.h</a>
-</li>
-<li>TidyRealloc
-: <a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">tidy.h</a>
-</li>
-<li>tidyReleaseDate()
-: <a class="el" href="group__Basic.html#gab7b404ada690635341d2e2d332102b36">tidy.h</a>
-</li>
-<li>TidyReportFilter
-: <a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">tidy.h</a>
-</li>
-<li>tidyRunDiagnostics()
-: <a class="el" href="group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77">tidy.h</a>
-</li>
-<li>tidySaveBuffer()
-: <a class="el" href="group__Save.html#ga7e8642262c8c4d34cf7cc426647d29f0">tidy.h</a>
-</li>
-<li>tidySaveFile()
-: <a class="el" href="group__Save.html#ga19ee6e2ee0e719a97cff443ebb19ae44">tidy.h</a>
-</li>
-<li>tidySaveSink()
-: <a class="el" href="group__Save.html#gaea985b28470453d0218092b137f71e77">tidy.h</a>
-</li>
-<li>tidySaveStdout()
-: <a class="el" href="group__Save.html#ga6638d1800ee63fc6bea19bc2bf582be2">tidy.h</a>
-</li>
-<li>tidySaveString()
-: <a class="el" href="group__Save.html#gaf684fefd3e42f459cf0a4ebe937ce12b">tidy.h</a>
-</li>
-<li>tidySetAppData()
-: <a class="el" href="group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708">tidy.h</a>
-</li>
-<li>tidySetCharEncoding()
-: <a class="el" href="group__Basic.html#ga2612e184472c2a59ca822a37d030e9af">tidy.h</a>
-</li>
-<li>tidySetErrorBuffer()
-: <a class="el" href="group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b">tidy.h</a>
-</li>
-<li>tidySetErrorFile()
-: <a class="el" href="group__IO.html#ga669758031bbd5d4ba957b19e77229c8b">tidy.h</a>
-</li>
-<li>tidySetErrorSink()
-: <a class="el" href="group__IO.html#gad47c75f3af85e7927e7ac18918ec6363">tidy.h</a>
-</li>
-<li>tidySetFreeCall()
-: <a class="el" href="group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7">tidy.h</a>
-</li>
-<li>tidySetInCharEncoding()
-: <a class="el" href="group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59">tidy.h</a>
-</li>
-<li>tidySetMallocCall()
-: <a class="el" href="group__Memory.html#gab55079374527525e3374ebc4d2a1e625">tidy.h</a>
-</li>
-<li>tidySetOutCharEncoding()
-: <a class="el" href="group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9">tidy.h</a>
-</li>
-<li>tidySetPanicCall()
-: <a class="el" href="group__Memory.html#gab12cc0435bacec1a8c725e02357acc00">tidy.h</a>
-</li>
-<li>tidySetReallocCall()
-: <a class="el" href="group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30">tidy.h</a>
-</li>
-<li>tidySetReportFilter()
-: <a class="el" href="group__IO.html#ga51e02523601388bb83c2555b995e68b0">tidy.h</a>
-</li>
-<li>tidyStatus()
-: <a class="el" href="group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760">tidy.h</a>
-</li>
-<li>tidyUngetByte()
-: <a class="el" href="group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7">tidy.h</a>
-</li>
-<li>TidyUngetByteFunc
-: <a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">tidy.h</a>
-</li>
-<li>tidyWarningCount()
-: <a class="el" href="group__Basic.html#ga29b0c36f75584a2a26422b021561f19c">tidy.h</a>
-</li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals_defs.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals_defs.html
deleted file mode 100644
index 4848989..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals_defs.html
+++ /dev/null
@@ -1,80 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Globals</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('globals_defs.html','');
-</script>
-<div id="doc-content">
-<div class="contents">
-&#160;<ul>
-<li>EndOfStream
-: <a class="el" href="group__IO.html#ga9a078b706ec6f37cce40958f6f68585a">tidy.h</a>
-</li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals_func.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals_func.html
deleted file mode 100644
index 6a1fc9d..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals_func.html
+++ /dev/null
@@ -1,376 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Globals</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('globals_func.html','');
-</script>
-<div id="doc-content">
-<div class="contents">
-&#160;
-
-<h3><a class="anchor" id="index_t"></a>- t -</h3><ul>
-<li>tidyAccessWarningCount()
-: <a class="el" href="group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb">tidy.h</a>
-</li>
-<li>tidyBufAlloc()
-: <a class="el" href="buffio_8h.html#a896654bd99113bfe5e86b924836aacc3">buffio.h</a>
-</li>
-<li>tidyBufAllocWithAllocator()
-: <a class="el" href="buffio_8h.html#a57c832b4ddbc19a329a5ab9936eb5826">buffio.h</a>
-</li>
-<li>tidyBufAppend()
-: <a class="el" href="buffio_8h.html#ad59b32f81789b634758274f34be4d25b">buffio.h</a>
-</li>
-<li>tidyBufAttach()
-: <a class="el" href="buffio_8h.html#ac5909e78d98583cb245dd2004469bb93">buffio.h</a>
-</li>
-<li>tidyBufCheckAlloc()
-: <a class="el" href="buffio_8h.html#a7a66ba1f574955d1fc1de57476e849f2">buffio.h</a>
-</li>
-<li>tidyBufClear()
-: <a class="el" href="buffio_8h.html#aa94e59f613a495b17e90c1c4778c3911">buffio.h</a>
-</li>
-<li>tidyBufDetach()
-: <a class="el" href="buffio_8h.html#a8da2bf473b14e6bdd5cd40fc47c29903">buffio.h</a>
-</li>
-<li>tidyBufEndOfInput()
-: <a class="el" href="buffio_8h.html#a7e7d8e58623c8bde00d66141edb2cae0">buffio.h</a>
-</li>
-<li>tidyBufFree()
-: <a class="el" href="buffio_8h.html#a65aae9ae4b499e62038700f4792849fc">buffio.h</a>
-</li>
-<li>tidyBufGetByte()
-: <a class="el" href="buffio_8h.html#a5a2e0c47b4b14b5beb17ac982fa21eeb">buffio.h</a>
-</li>
-<li>tidyBufInit()
-: <a class="el" href="buffio_8h.html#a3cf251a96f69f05495744af6c9d0339b">buffio.h</a>
-</li>
-<li>tidyBufInitWithAllocator()
-: <a class="el" href="buffio_8h.html#aff43ddd9fc78532617d88db55b164f5e">buffio.h</a>
-</li>
-<li>tidyBufPopByte()
-: <a class="el" href="buffio_8h.html#af8b1e8fbe3c29d08250794d7e4925ea6">buffio.h</a>
-</li>
-<li>tidyBufPutByte()
-: <a class="el" href="buffio_8h.html#af48af586ada5ff264501fe9ef4c67dd1">buffio.h</a>
-</li>
-<li>tidyBufUngetByte()
-: <a class="el" href="buffio_8h.html#a1d1f2039b769381d418ac1187b50b292">buffio.h</a>
-</li>
-<li>tidyCleanAndRepair()
-: <a class="el" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidy.h</a>
-</li>
-<li>tidyConfigErrorCount()
-: <a class="el" href="group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988">tidy.h</a>
-</li>
-<li>tidyDetectedGenericXml()
-: <a class="el" href="group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2">tidy.h</a>
-</li>
-<li>tidyDetectedHtmlVersion()
-: <a class="el" href="group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443">tidy.h</a>
-</li>
-<li>tidyDetectedXhtml()
-: <a class="el" href="group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d">tidy.h</a>
-</li>
-<li>tidyErrorCount()
-: <a class="el" href="group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d">tidy.h</a>
-</li>
-<li>tidyErrorSummary()
-: <a class="el" href="group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70">tidy.h</a>
-</li>
-<li>tidyGeneralInfo()
-: <a class="el" href="group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971">tidy.h</a>
-</li>
-<li>tidyGetAppData()
-: <a class="el" href="group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504">tidy.h</a>
-</li>
-<li>tidyGetByte()
-: <a class="el" href="group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b">tidy.h</a>
-</li>
-<li>tidyGetNextOption()
-: <a class="el" href="group__Configuration.html#ga1a3088dacc539487e00f1eb4009dafc0">tidy.h</a>
-</li>
-<li>tidyGetOption()
-: <a class="el" href="group__Configuration.html#ga030c695d6407b2756856eb1862642cfe">tidy.h</a>
-</li>
-<li>tidyGetOptionByName()
-: <a class="el" href="group__Configuration.html#gaeae2e147645697fc54234ff2526a8108">tidy.h</a>
-</li>
-<li>tidyGetOptionList()
-: <a class="el" href="group__Configuration.html#gab92a35ffbd3b0b668534d63f94d2486f">tidy.h</a>
-</li>
-<li>tidyInitInputBuffer()
-: <a class="el" href="buffio_8h.html#a73da3182aea89939af1d98504a3b2df0">buffio.h</a>
-</li>
-<li>tidyInitOutputBuffer()
-: <a class="el" href="buffio_8h.html#a882a92590a9e6ecce16d5b8e8db19fbb">buffio.h</a>
-</li>
-<li>tidyInitSink()
-: <a class="el" href="group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4">tidy.h</a>
-</li>
-<li>tidyInitSource()
-: <a class="el" href="group__IO.html#gab446af273e331cb0440dd01b6990d2d0">tidy.h</a>
-</li>
-<li>tidyIsEOF()
-: <a class="el" href="group__IO.html#ga399df5ba17614205964a665f7b1726a6">tidy.h</a>
-</li>
-<li>tidyLoadConfig()
-: <a class="el" href="group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a">tidy.h</a>
-</li>
-<li>tidyLoadConfigEnc()
-: <a class="el" href="group__Basic.html#gac677de148c6f00fc96a682c21433ab1c">tidy.h</a>
-</li>
-<li>tidyOptCopyConfig()
-: <a class="el" href="group__Configuration.html#ga0b6cb26ab5dbbe0a0841d605fbd06fad">tidy.h</a>
-</li>
-<li>tidyOptDiffThanDefault()
-: <a class="el" href="group__Configuration.html#ga083cb42d6f4413604240b5c1b3aa2070">tidy.h</a>
-</li>
-<li>tidyOptDiffThanSnapshot()
-: <a class="el" href="group__Configuration.html#ga793bc9e177aa90301802e44c4fc22e0e">tidy.h</a>
-</li>
-<li>tidyOptGetBool()
-: <a class="el" href="group__Configuration.html#ga09e6c999e9e7ebc94ea3d9cf5d674125">tidy.h</a>
-</li>
-<li>tidyOptGetCategory()
-: <a class="el" href="group__Configuration.html#ga1d8b72e64e4d949dc21599fa788e842f">tidy.h</a>
-</li>
-<li>tidyOptGetCurrPick()
-: <a class="el" href="group__Configuration.html#ga0785047cc73d5fbc88691861a0fa9c78">tidy.h</a>
-</li>
-<li>tidyOptGetDeclTagList()
-: <a class="el" href="group__Configuration.html#ga55f30cf9e507f8fc66330ec3b0132620">tidy.h</a>
-</li>
-<li>tidyOptGetDefault()
-: <a class="el" href="group__Configuration.html#gab9e02c9927fe2c382ec5f81b4acf9cb4">tidy.h</a>
-</li>
-<li>tidyOptGetDefaultBool()
-: <a class="el" href="group__Configuration.html#gadadea4da66e3718e02b720c2b59d170b">tidy.h</a>
-</li>
-<li>tidyOptGetDefaultInt()
-: <a class="el" href="group__Configuration.html#gafc8df35e864dd3a24f23aca3c2f8bd9d">tidy.h</a>
-</li>
-<li>tidyOptGetDoc()
-: <a class="el" href="group__Configuration.html#gafca3ed506463e192187133ff646a643d">tidy.h</a>
-</li>
-<li>tidyOptGetDocLinksList()
-: <a class="el" href="group__Configuration.html#gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f">tidy.h</a>
-</li>
-<li>tidyOptGetEncName()
-: <a class="el" href="group__Configuration.html#ga47f8502cc202fc7423937647957955a3">tidy.h</a>
-</li>
-<li>tidyOptGetId()
-: <a class="el" href="group__Configuration.html#ga51cf095b76921b4e290e14814998f096">tidy.h</a>
-</li>
-<li>tidyOptGetIdForName()
-: <a class="el" href="group__Configuration.html#ga500f31ba81d015b8ce9dad6f2a6ade75">tidy.h</a>
-</li>
-<li>tidyOptGetInt()
-: <a class="el" href="group__Configuration.html#ga7ff683612d446b07318517e564cccc7a">tidy.h</a>
-</li>
-<li>tidyOptGetName()
-: <a class="el" href="group__Configuration.html#gaf370cd2ea113747f50da185fda24adcb">tidy.h</a>
-</li>
-<li>tidyOptGetNextDeclTag()
-: <a class="el" href="group__Configuration.html#gacec933eef8f9eec3dfa4382e05cab251">tidy.h</a>
-</li>
-<li>tidyOptGetNextDocLinks()
-: <a class="el" href="group__Configuration.html#ga1db79a95067d6364c02263d9492fa9e8">tidy.h</a>
-</li>
-<li>tidyOptGetNextPick()
-: <a class="el" href="group__Configuration.html#gad1366c5c458f38d2a9c6a6335e6704d9">tidy.h</a>
-</li>
-<li>tidyOptGetPickList()
-: <a class="el" href="group__Configuration.html#ga31f815fe2b5bf1e00d6b50be62edd0ab">tidy.h</a>
-</li>
-<li>tidyOptGetType()
-: <a class="el" href="group__Configuration.html#ga06e2685cc2950b182ff2f7136d170a34">tidy.h</a>
-</li>
-<li>tidyOptGetValue()
-: <a class="el" href="group__Configuration.html#ga0fbe23ab1e4ec374fa38e6f514617e4d">tidy.h</a>
-</li>
-<li>tidyOptIsReadOnly()
-: <a class="el" href="group__Configuration.html#ga6aba2ccdb1237a70f5fe1393fee0ce4d">tidy.h</a>
-</li>
-<li>tidyOptParseValue()
-: <a class="el" href="group__Configuration.html#gad09fbcbbaf83fbf93e0d7be9c9bb30c0">tidy.h</a>
-</li>
-<li>tidyOptResetAllToDefault()
-: <a class="el" href="group__Configuration.html#ga874ce26884f0eeaf692c30758688888a">tidy.h</a>
-</li>
-<li>tidyOptResetToDefault()
-: <a class="el" href="group__Configuration.html#ga2aa45ad67758ca0b18d14eafa37fe080">tidy.h</a>
-</li>
-<li>tidyOptResetToSnapshot()
-: <a class="el" href="group__Configuration.html#gae6212b8f32990763cc18a6d3f05eb191">tidy.h</a>
-</li>
-<li>tidyOptSaveFile()
-: <a class="el" href="group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca">tidy.h</a>
-</li>
-<li>tidyOptSaveSink()
-: <a class="el" href="group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee">tidy.h</a>
-</li>
-<li>tidyOptSetBool()
-: <a class="el" href="group__Configuration.html#gac9de7e155bea5c28713f2bfb93614472">tidy.h</a>
-</li>
-<li>tidyOptSetInt()
-: <a class="el" href="group__Configuration.html#gad9e75a64c8dcbc54e791959cf934e1ad">tidy.h</a>
-</li>
-<li>tidyOptSetValue()
-: <a class="el" href="group__Configuration.html#gaf37bdad3b6809d8cb78e7d6316d4ba69">tidy.h</a>
-</li>
-<li>tidyOptSnapshot()
-: <a class="el" href="group__Configuration.html#ga4beb2c73c90c3e2ae589c2642478cebd">tidy.h</a>
-</li>
-<li>tidyParseBuffer()
-: <a class="el" href="group__Parse.html#gaa28ce34c95750f150205843885317851">tidy.h</a>
-</li>
-<li>tidyParseFile()
-: <a class="el" href="group__Parse.html#ga5ec263f2e430dd9c9e10437f067b2a28">tidy.h</a>
-</li>
-<li>tidyParseSource()
-: <a class="el" href="group__Parse.html#gaa65dad2a4ca5fa97d267ddefe1180e0e">tidy.h</a>
-</li>
-<li>tidyParseStdin()
-: <a class="el" href="group__Parse.html#ga96b41ff6e6a7f9d0b9b0e901e33ad31d">tidy.h</a>
-</li>
-<li>tidyParseString()
-: <a class="el" href="group__Parse.html#ga50c02fa244dcd120ae339719c2132ff9">tidy.h</a>
-</li>
-<li>tidyPutByte()
-: <a class="el" href="group__IO.html#ga2a34772782d7b786e37012fce4cd2425">tidy.h</a>
-</li>
-<li>tidyReleaseDate()
-: <a class="el" href="group__Basic.html#gab7b404ada690635341d2e2d332102b36">tidy.h</a>
-</li>
-<li>tidyRunDiagnostics()
-: <a class="el" href="group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77">tidy.h</a>
-</li>
-<li>tidySaveBuffer()
-: <a class="el" href="group__Save.html#ga7e8642262c8c4d34cf7cc426647d29f0">tidy.h</a>
-</li>
-<li>tidySaveFile()
-: <a class="el" href="group__Save.html#ga19ee6e2ee0e719a97cff443ebb19ae44">tidy.h</a>
-</li>
-<li>tidySaveSink()
-: <a class="el" href="group__Save.html#gaea985b28470453d0218092b137f71e77">tidy.h</a>
-</li>
-<li>tidySaveStdout()
-: <a class="el" href="group__Save.html#ga6638d1800ee63fc6bea19bc2bf582be2">tidy.h</a>
-</li>
-<li>tidySaveString()
-: <a class="el" href="group__Save.html#gaf684fefd3e42f459cf0a4ebe937ce12b">tidy.h</a>
-</li>
-<li>tidySetAppData()
-: <a class="el" href="group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708">tidy.h</a>
-</li>
-<li>tidySetCharEncoding()
-: <a class="el" href="group__Basic.html#ga2612e184472c2a59ca822a37d030e9af">tidy.h</a>
-</li>
-<li>tidySetErrorBuffer()
-: <a class="el" href="group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b">tidy.h</a>
-</li>
-<li>tidySetErrorFile()
-: <a class="el" href="group__IO.html#ga669758031bbd5d4ba957b19e77229c8b">tidy.h</a>
-</li>
-<li>tidySetErrorSink()
-: <a class="el" href="group__IO.html#gad47c75f3af85e7927e7ac18918ec6363">tidy.h</a>
-</li>
-<li>tidySetFreeCall()
-: <a class="el" href="group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7">tidy.h</a>
-</li>
-<li>tidySetInCharEncoding()
-: <a class="el" href="group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59">tidy.h</a>
-</li>
-<li>tidySetMallocCall()
-: <a class="el" href="group__Memory.html#gab55079374527525e3374ebc4d2a1e625">tidy.h</a>
-</li>
-<li>tidySetOutCharEncoding()
-: <a class="el" href="group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9">tidy.h</a>
-</li>
-<li>tidySetPanicCall()
-: <a class="el" href="group__Memory.html#gab12cc0435bacec1a8c725e02357acc00">tidy.h</a>
-</li>
-<li>tidySetReallocCall()
-: <a class="el" href="group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30">tidy.h</a>
-</li>
-<li>tidySetReportFilter()
-: <a class="el" href="group__IO.html#ga51e02523601388bb83c2555b995e68b0">tidy.h</a>
-</li>
-<li>tidyStatus()
-: <a class="el" href="group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760">tidy.h</a>
-</li>
-<li>tidyUngetByte()
-: <a class="el" href="group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7">tidy.h</a>
-</li>
-<li>tidyWarningCount()
-: <a class="el" href="group__Basic.html#ga29b0c36f75584a2a26422b021561f19c">tidy.h</a>
-</li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals_type.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals_type.html
deleted file mode 100644
index 9ba995b..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/globals_type.html
+++ /dev/null
@@ -1,119 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Globals</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('globals_type.html','');
-</script>
-<div id="doc-content">
-<div class="contents">
-&#160;<ul>
-<li>TidyAllocator
-: <a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">tidy.h</a>
-</li>
-<li>TidyAllocatorVtbl
-: <a class="el" href="group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8">tidy.h</a>
-</li>
-<li>TidyEOFFunc
-: <a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">tidy.h</a>
-</li>
-<li>TidyFree
-: <a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">tidy.h</a>
-</li>
-<li>TidyGetByteFunc
-: <a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">tidy.h</a>
-</li>
-<li>TidyInputSource
-: <a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">tidy.h</a>
-</li>
-<li>TidyMalloc
-: <a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">tidy.h</a>
-</li>
-<li>TidyOptCallback
-: <a class="el" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">tidy.h</a>
-</li>
-<li>TidyOutputSink
-: <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">tidy.h</a>
-</li>
-<li>TidyPanic
-: <a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">tidy.h</a>
-</li>
-<li>TidyPutByteFunc
-: <a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">tidy.h</a>
-</li>
-<li>TidyRealloc
-: <a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">tidy.h</a>
-</li>
-<li>TidyReportFilter
-: <a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">tidy.h</a>
-</li>
-<li>TidyUngetByteFunc
-: <a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">tidy.h</a>
-</li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGet.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGet.html
deleted file mode 100644
index bd73113..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGet.html
+++ /dev/null
@@ -1,93 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Attribute Retrieval</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__AttrGet.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#groups">Modules</a> &#124;
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Attribute Retrieval</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="groups"></a>
-Modules</h2></td></tr>
-<tr class="memitem:group__AttrGetAttributeName"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__AttrGetAttributeName.html">Deprecated attribute retrieval per AttrId</a></td></tr>
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:ga5391e01ca5a2b497a7c044a25080468e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5391e01ca5a2b497a7c044a25080468e"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetById</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod, TidyAttrId attId)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<p>Lookup an attribute from a given node </p>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGet.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGet.js
deleted file mode 100644
index 762fb82..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGet.js
+++ /dev/null
@@ -1,5 +0,0 @@
-var group__AttrGet =
-[
-    [ "Deprecated attribute retrieval per AttrId", "group__AttrGetAttributeName.html", "group__AttrGetAttributeName" ],
-    [ "tidyAttrGetById", "group__AttrGet.html#ga5391e01ca5a2b497a7c044a25080468e", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGetAttributeName.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGetAttributeName.html
deleted file mode 100644
index 54a8ead..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGetAttributeName.html
+++ /dev/null
@@ -1,177 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Deprecated attribute retrieval per AttrId</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__AttrGetAttributeName.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Deprecated attribute retrieval per AttrId</div>  </div>
-<div class="ingroups"><a class="el" href="group__AttrGet.html">Attribute Retrieval</a></div></div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:ga32edc3c33e5aadcdd83efd60d3ac2a3e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga32edc3c33e5aadcdd83efd60d3ac2a3e"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetHREF</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7869ea78760d5d62509940fc1f2c21ac"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7869ea78760d5d62509940fc1f2c21ac"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSRC</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae3b3b79328600053c21dcb14cbc0ffa8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae3b3b79328600053c21dcb14cbc0ffa8"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetID</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaab8e86c4006c219832438ee0db0daf28"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaab8e86c4006c219832438ee0db0daf28"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetNAME</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8f4d4e6e768186d11e516cc0e6b2407a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8f4d4e6e768186d11e516cc0e6b2407a"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSUMMARY</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga0b3704beb81b411038692cd6a50a6812"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0b3704beb81b411038692cd6a50a6812"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetALT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafbeef23c8d7946a771c2179e41324e81"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafbeef23c8d7946a771c2179e41324e81"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLONGDESC</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga33e4dde55f16c04f7b2decbbf7b4d4a2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga33e4dde55f16c04f7b2decbbf7b4d4a2"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetUSEMAP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga13d19afccb2d2a369bbf93c6127adb1c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga13d19afccb2d2a369bbf93c6127adb1c"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetISMAP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga643d43c8c735054a60d5443fbed8a240"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga643d43c8c735054a60d5443fbed8a240"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLANGUAGE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4ad1d50bf2ba65bb32617e2fa2c41c67"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4ad1d50bf2ba65bb32617e2fa2c41c67"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTYPE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga044e7be2a5353e64aaa4b2a71089e10b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga044e7be2a5353e64aaa4b2a71089e10b"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetVALUE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaf29497f73685e92521ab620f65cb3140"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf29497f73685e92521ab620f65cb3140"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetCONTENT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga3da405f3a9e87534fd828cf081c58d03"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3da405f3a9e87534fd828cf081c58d03"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTITLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5d1fd6265f41c08ed5427c80316caa03"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5d1fd6265f41c08ed5427c80316caa03"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetXMLNS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga232436e2e4087c67502a12e8782e172e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga232436e2e4087c67502a12e8782e172e"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetDATAFLD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga08bbf26729bf8a3f6c1390d26d3666d0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga08bbf26729bf8a3f6c1390d26d3666d0"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetWIDTH</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae148f282af56270d6e811b97268bca64"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae148f282af56270d6e811b97268bca64"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetHEIGHT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafe94b5b5ae7288d6d866f7b82703b82a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafe94b5b5ae7288d6d866f7b82703b82a"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetFOR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga048e47b2b4c2f14512c3d7f585b2d004"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga048e47b2b4c2f14512c3d7f585b2d004"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSELECTED</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga94406af9c9c20b1942cce43c506ecf61"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga94406af9c9c20b1942cce43c506ecf61"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetCHECKED</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga992d84e0b6b5b3f25c0e40c7b25bd13f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga992d84e0b6b5b3f25c0e40c7b25bd13f"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLANG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafda31fbe48294c6feeef15449629341a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafda31fbe48294c6feeef15449629341a"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTARGET</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gad023e11b117601b6abdc4373db879d34"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad023e11b117601b6abdc4373db879d34"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetHTTP_EQUIV</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga28306ff6130eab4c88fce32674326280"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga28306ff6130eab4c88fce32674326280"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetREL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga9fed89179a23ad83c73948c045507095"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9fed89179a23ad83c73948c045507095"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEMOVE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5c723febdf97b14e7339dede87b410e7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5c723febdf97b14e7339dede87b410e7"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEDOWN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaa218ed968a4b8fa50b43a4a549209077"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa218ed968a4b8fa50b43a4a549209077"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga38fe84b14dafb84b3f40968dc27b86e3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga38fe84b14dafb84b3f40968dc27b86e3"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnCLICK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga66be75bf699308d87172e0bf03100363"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga66be75bf699308d87172e0bf03100363"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEOVER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga0b13bb4f3475afbded6e4ae6a2bdcf2b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0b13bb4f3475afbded6e4ae6a2bdcf2b"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEOUT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaabfd3fbdaf97f83fe2da402d0cbe9e8e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaabfd3fbdaf97f83fe2da402d0cbe9e8e"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnKEYDOWN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga73473cc4d39d2fd70b860ebebcdc4815"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga73473cc4d39d2fd70b860ebebcdc4815"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnKEYUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6beda5d89c91f6b387929b930832fb57"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6beda5d89c91f6b387929b930832fb57"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnKEYPRESS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4fd4f5b38f99d395b8a7e253cc45ef28"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4fd4f5b38f99d395b8a7e253cc45ef28"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnFOCUS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5a038e1439320c57c983da87efe64c3e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5a038e1439320c57c983da87efe64c3e"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnBLUR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gadcde1dd3d87752162067bdac5d2dd785"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadcde1dd3d87752162067bdac5d2dd785"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetBGCOLOR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae8e7d8d65a20f14d6aa875493b195329"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae8e7d8d65a20f14d6aa875493b195329"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga49e3f791908e26561566587b0f15b37d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga49e3f791908e26561566587b0f15b37d"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetALINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae46a7c41114c29766f9fa95c10b36f9d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae46a7c41114c29766f9fa95c10b36f9d"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetVLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5c4b94ac9cfcbd403ce02690c9196388"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5c4b94ac9cfcbd403ce02690c9196388"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTEXT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaa90006fbac322f2577db885c913c7d19"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa90006fbac322f2577db885c913c7d19"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSTYLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaae1595d000373dd64c9dfe0a89d03597"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaae1595d000373dd64c9dfe0a89d03597"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetABBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafd6746350a6e8d7e324d0c309777f059"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafd6746350a6e8d7e324d0c309777f059"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetCOLSPAN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga837b3be1dc949e7989dcbf25deaf5b36"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga837b3be1dc949e7989dcbf25deaf5b36"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetROWSPAN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000003">Deprecated:</a></b></dt><dd>The functions tidyAttrGet{AttributeName} are deprecated and should be replaced by tidyAttrGetById. For instance, tidyAttrGetID( TidyNode tnod ) can be replaced by tidyAttrGetById( TidyNode tnod, TidyAttr_ID ). This avoids a potential name clash with tidyAttrGetId for case-insensitive languages.</dd></dl>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGetAttributeName.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGetAttributeName.js
deleted file mode 100644
index a9c74ad..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrGetAttributeName.js
+++ /dev/null
@@ -1,48 +0,0 @@
-var group__AttrGetAttributeName =
-[
-    [ "tidyAttrGetHREF", "group__AttrGetAttributeName.html#ga32edc3c33e5aadcdd83efd60d3ac2a3e", null ],
-    [ "tidyAttrGetSRC", "group__AttrGetAttributeName.html#ga7869ea78760d5d62509940fc1f2c21ac", null ],
-    [ "tidyAttrGetID", "group__AttrGetAttributeName.html#gae3b3b79328600053c21dcb14cbc0ffa8", null ],
-    [ "tidyAttrGetNAME", "group__AttrGetAttributeName.html#gaab8e86c4006c219832438ee0db0daf28", null ],
-    [ "tidyAttrGetSUMMARY", "group__AttrGetAttributeName.html#ga8f4d4e6e768186d11e516cc0e6b2407a", null ],
-    [ "tidyAttrGetALT", "group__AttrGetAttributeName.html#ga0b3704beb81b411038692cd6a50a6812", null ],
-    [ "tidyAttrGetLONGDESC", "group__AttrGetAttributeName.html#gafbeef23c8d7946a771c2179e41324e81", null ],
-    [ "tidyAttrGetUSEMAP", "group__AttrGetAttributeName.html#ga33e4dde55f16c04f7b2decbbf7b4d4a2", null ],
-    [ "tidyAttrGetISMAP", "group__AttrGetAttributeName.html#ga13d19afccb2d2a369bbf93c6127adb1c", null ],
-    [ "tidyAttrGetLANGUAGE", "group__AttrGetAttributeName.html#ga643d43c8c735054a60d5443fbed8a240", null ],
-    [ "tidyAttrGetTYPE", "group__AttrGetAttributeName.html#ga4ad1d50bf2ba65bb32617e2fa2c41c67", null ],
-    [ "tidyAttrGetVALUE", "group__AttrGetAttributeName.html#ga044e7be2a5353e64aaa4b2a71089e10b", null ],
-    [ "tidyAttrGetCONTENT", "group__AttrGetAttributeName.html#gaf29497f73685e92521ab620f65cb3140", null ],
-    [ "tidyAttrGetTITLE", "group__AttrGetAttributeName.html#ga3da405f3a9e87534fd828cf081c58d03", null ],
-    [ "tidyAttrGetXMLNS", "group__AttrGetAttributeName.html#ga5d1fd6265f41c08ed5427c80316caa03", null ],
-    [ "tidyAttrGetDATAFLD", "group__AttrGetAttributeName.html#ga232436e2e4087c67502a12e8782e172e", null ],
-    [ "tidyAttrGetWIDTH", "group__AttrGetAttributeName.html#ga08bbf26729bf8a3f6c1390d26d3666d0", null ],
-    [ "tidyAttrGetHEIGHT", "group__AttrGetAttributeName.html#gae148f282af56270d6e811b97268bca64", null ],
-    [ "tidyAttrGetFOR", "group__AttrGetAttributeName.html#gafe94b5b5ae7288d6d866f7b82703b82a", null ],
-    [ "tidyAttrGetSELECTED", "group__AttrGetAttributeName.html#ga048e47b2b4c2f14512c3d7f585b2d004", null ],
-    [ "tidyAttrGetCHECKED", "group__AttrGetAttributeName.html#ga94406af9c9c20b1942cce43c506ecf61", null ],
-    [ "tidyAttrGetLANG", "group__AttrGetAttributeName.html#ga992d84e0b6b5b3f25c0e40c7b25bd13f", null ],
-    [ "tidyAttrGetTARGET", "group__AttrGetAttributeName.html#gafda31fbe48294c6feeef15449629341a", null ],
-    [ "tidyAttrGetHTTP_EQUIV", "group__AttrGetAttributeName.html#gad023e11b117601b6abdc4373db879d34", null ],
-    [ "tidyAttrGetREL", "group__AttrGetAttributeName.html#ga28306ff6130eab4c88fce32674326280", null ],
-    [ "tidyAttrGetOnMOUSEMOVE", "group__AttrGetAttributeName.html#ga9fed89179a23ad83c73948c045507095", null ],
-    [ "tidyAttrGetOnMOUSEDOWN", "group__AttrGetAttributeName.html#ga5c723febdf97b14e7339dede87b410e7", null ],
-    [ "tidyAttrGetOnMOUSEUP", "group__AttrGetAttributeName.html#gaa218ed968a4b8fa50b43a4a549209077", null ],
-    [ "tidyAttrGetOnCLICK", "group__AttrGetAttributeName.html#ga38fe84b14dafb84b3f40968dc27b86e3", null ],
-    [ "tidyAttrGetOnMOUSEOVER", "group__AttrGetAttributeName.html#ga66be75bf699308d87172e0bf03100363", null ],
-    [ "tidyAttrGetOnMOUSEOUT", "group__AttrGetAttributeName.html#ga0b13bb4f3475afbded6e4ae6a2bdcf2b", null ],
-    [ "tidyAttrGetOnKEYDOWN", "group__AttrGetAttributeName.html#gaabfd3fbdaf97f83fe2da402d0cbe9e8e", null ],
-    [ "tidyAttrGetOnKEYUP", "group__AttrGetAttributeName.html#ga73473cc4d39d2fd70b860ebebcdc4815", null ],
-    [ "tidyAttrGetOnKEYPRESS", "group__AttrGetAttributeName.html#ga6beda5d89c91f6b387929b930832fb57", null ],
-    [ "tidyAttrGetOnFOCUS", "group__AttrGetAttributeName.html#ga4fd4f5b38f99d395b8a7e253cc45ef28", null ],
-    [ "tidyAttrGetOnBLUR", "group__AttrGetAttributeName.html#ga5a038e1439320c57c983da87efe64c3e", null ],
-    [ "tidyAttrGetBGCOLOR", "group__AttrGetAttributeName.html#gadcde1dd3d87752162067bdac5d2dd785", null ],
-    [ "tidyAttrGetLINK", "group__AttrGetAttributeName.html#gae8e7d8d65a20f14d6aa875493b195329", null ],
-    [ "tidyAttrGetALINK", "group__AttrGetAttributeName.html#ga49e3f791908e26561566587b0f15b37d", null ],
-    [ "tidyAttrGetVLINK", "group__AttrGetAttributeName.html#gae46a7c41114c29766f9fa95c10b36f9d", null ],
-    [ "tidyAttrGetTEXT", "group__AttrGetAttributeName.html#ga5c4b94ac9cfcbd403ce02690c9196388", null ],
-    [ "tidyAttrGetSTYLE", "group__AttrGetAttributeName.html#gaa90006fbac322f2577db885c913c7d19", null ],
-    [ "tidyAttrGetABBR", "group__AttrGetAttributeName.html#gaae1595d000373dd64c9dfe0a89d03597", null ],
-    [ "tidyAttrGetCOLSPAN", "group__AttrGetAttributeName.html#gafd6746350a6e8d7e324d0c309777f059", null ],
-    [ "tidyAttrGetROWSPAN", "group__AttrGetAttributeName.html#ga837b3be1dc949e7989dcbf25deaf5b36", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrIsAttributeName.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrIsAttributeName.html
deleted file mode 100644
index 9d410c9..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrIsAttributeName.html
+++ /dev/null
@@ -1,177 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Deprecated attribute interrogation per AttrId</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__AttrIsAttributeName.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Deprecated attribute interrogation per AttrId</div>  </div>
-<div class="ingroups"><a class="el" href="group__Attribute.html">Attribute Interrogation</a></div></div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:ga7c5dab5750d48c0849fb5afddcaf6ef1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7c5dab5750d48c0849fb5afddcaf6ef1"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsHREF</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga9e42faa67c4c67d1f20b17494bcd85ae"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9e42faa67c4c67d1f20b17494bcd85ae"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSRC</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga40eb7812272130ee672347252f8d2803"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga40eb7812272130ee672347252f8d2803"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsID</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga30a54710b484eac706e936a69fb95e29"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga30a54710b484eac706e936a69fb95e29"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsNAME</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gab2b19098f9cf2e7c74d8b424e086df43"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab2b19098f9cf2e7c74d8b424e086df43"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSUMMARY</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gad621c0fd59bdacd162dfdd769a62ef27"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad621c0fd59bdacd162dfdd769a62ef27"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsALT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga0a99b0a5db896cb47c8b40ef110370c8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0a99b0a5db896cb47c8b40ef110370c8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLONGDESC</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaeb125294c12e461615f32d9ffdb9bbd7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeb125294c12e461615f32d9ffdb9bbd7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsUSEMAP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga33c5307a710a27f636ca150112de3f7b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga33c5307a710a27f636ca150112de3f7b"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsISMAP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gac903236acff81674020778300c3a3862"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac903236acff81674020778300c3a3862"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLANGUAGE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga7a9c5c70693337edf09b36f483229fe5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7a9c5c70693337edf09b36f483229fe5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTYPE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga9454a023bc9f5663c56b8404ec8406c8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9454a023bc9f5663c56b8404ec8406c8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsVALUE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gac97bd371ff8401f13a333273e5e3bf22"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac97bd371ff8401f13a333273e5e3bf22"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsCONTENT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga6a47ddd81d777ff5a086bedc4e951040"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6a47ddd81d777ff5a086bedc4e951040"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTITLE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga1147ae3c7c35ba4d4241832733859b78"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1147ae3c7c35ba4d4241832733859b78"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsXMLNS</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga3e3baf9e8a4ebe112b1865f3eb4b51fe"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3e3baf9e8a4ebe112b1865f3eb4b51fe"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsDATAFLD</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga7c62cdc314ebba251cf25f0eeec02f56"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7c62cdc314ebba251cf25f0eeec02f56"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsWIDTH</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaeb9e235fbc570a2fd73584e9c5a992be"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeb9e235fbc570a2fd73584e9c5a992be"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsHEIGHT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga9eb541ed5e3b751a5d1fc1350443b5e6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9eb541ed5e3b751a5d1fc1350443b5e6"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsFOR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga8a6824904535e40e3bdc2b17c4cf9dd2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8a6824904535e40e3bdc2b17c4cf9dd2"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSELECTED</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gae55a371bf3b146788b217be62499aa35"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae55a371bf3b146788b217be62499aa35"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsCHECKED</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gae8f47e206721fffc4eda7ca4af79e01e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae8f47e206721fffc4eda7ca4af79e01e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLANG</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga315f297329d38bd0b69307e329699bd6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga315f297329d38bd0b69307e329699bd6"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTARGET</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaee94d3e34dd79b67e82c738e35076818"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaee94d3e34dd79b67e82c738e35076818"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsHTTP_EQUIV</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga58a482b3e743570dcb88b64b9c93f172"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga58a482b3e743570dcb88b64b9c93f172"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsREL</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gad69f1e1cf8a7cf6d70359b7344839e79"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad69f1e1cf8a7cf6d70359b7344839e79"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEMOVE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga1df15af0e642d1c1bd1bbc64ffd894e9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1df15af0e642d1c1bd1bbc64ffd894e9"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEDOWN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga71c648c7d945d5d1a1da686813ef4149"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga71c648c7d945d5d1a1da686813ef4149"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEUP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga4e70306e72db98316ff36c07058667ec"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4e70306e72db98316ff36c07058667ec"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnCLICK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gadea7c51060ca59643fe1c4be493f70f8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadea7c51060ca59643fe1c4be493f70f8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEOVER</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gadba041c3573d5457fbee24356d4f59fc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadba041c3573d5457fbee24356d4f59fc"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEOUT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga5699e85b46e535b657c70b47306a08db"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5699e85b46e535b657c70b47306a08db"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnKEYDOWN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaf4d69efe322c065fef448b5d5b48b8f7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf4d69efe322c065fef448b5d5b48b8f7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnKEYUP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga9b08c6cf7ec3f3605722486c4ba42b4f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9b08c6cf7ec3f3605722486c4ba42b4f"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnKEYPRESS</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga54437cfd33daef01fd9d9e63b79a20f5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga54437cfd33daef01fd9d9e63b79a20f5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnFOCUS</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gab704326c008f437a30878b8dd632ecca"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab704326c008f437a30878b8dd632ecca"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnBLUR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gad75eb36382a280b90761cba07fcf1895"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad75eb36382a280b90761cba07fcf1895"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsBGCOLOR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga5d88a7dcf98264502e1a2a18014f58a7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5d88a7dcf98264502e1a2a18014f58a7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLINK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga73acdbe07d9f4263897c2d7ef2f55a8d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga73acdbe07d9f4263897c2d7ef2f55a8d"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsALINK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga502ead90e7b121fd1ae1b034a2a046da"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga502ead90e7b121fd1ae1b034a2a046da"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsVLINK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga7c6fde56b1bb05a07043ac1b69a72db8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7c6fde56b1bb05a07043ac1b69a72db8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTEXT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga93224d5a31b94c82a4f97577338c3a59"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga93224d5a31b94c82a4f97577338c3a59"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSTYLE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga763c7d67faa40b48a0485d4aaeddf694"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga763c7d67faa40b48a0485d4aaeddf694"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsABBR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga69119cd18a1fb79bb02b78f8bf145f81"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga69119cd18a1fb79bb02b78f8bf145f81"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsCOLSPAN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaee7e2dfe999d6831d3af1e826dcf3c22"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaee7e2dfe999d6831d3af1e826dcf3c22"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsROWSPAN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000002">Deprecated:</a></b></dt><dd>The functions tidyAttrIs{AttributeName} are deprecated and should be replaced by tidyAttrGetId.</dd></dl>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrIsAttributeName.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrIsAttributeName.js
deleted file mode 100644
index 412ac8e..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__AttrIsAttributeName.js
+++ /dev/null
@@ -1,48 +0,0 @@
-var group__AttrIsAttributeName =
-[
-    [ "tidyAttrIsHREF", "group__AttrIsAttributeName.html#ga7c5dab5750d48c0849fb5afddcaf6ef1", null ],
-    [ "tidyAttrIsSRC", "group__AttrIsAttributeName.html#ga9e42faa67c4c67d1f20b17494bcd85ae", null ],
-    [ "tidyAttrIsID", "group__AttrIsAttributeName.html#ga40eb7812272130ee672347252f8d2803", null ],
-    [ "tidyAttrIsNAME", "group__AttrIsAttributeName.html#ga30a54710b484eac706e936a69fb95e29", null ],
-    [ "tidyAttrIsSUMMARY", "group__AttrIsAttributeName.html#gab2b19098f9cf2e7c74d8b424e086df43", null ],
-    [ "tidyAttrIsALT", "group__AttrIsAttributeName.html#gad621c0fd59bdacd162dfdd769a62ef27", null ],
-    [ "tidyAttrIsLONGDESC", "group__AttrIsAttributeName.html#ga0a99b0a5db896cb47c8b40ef110370c8", null ],
-    [ "tidyAttrIsUSEMAP", "group__AttrIsAttributeName.html#gaeb125294c12e461615f32d9ffdb9bbd7", null ],
-    [ "tidyAttrIsISMAP", "group__AttrIsAttributeName.html#ga33c5307a710a27f636ca150112de3f7b", null ],
-    [ "tidyAttrIsLANGUAGE", "group__AttrIsAttributeName.html#gac903236acff81674020778300c3a3862", null ],
-    [ "tidyAttrIsTYPE", "group__AttrIsAttributeName.html#ga7a9c5c70693337edf09b36f483229fe5", null ],
-    [ "tidyAttrIsVALUE", "group__AttrIsAttributeName.html#ga9454a023bc9f5663c56b8404ec8406c8", null ],
-    [ "tidyAttrIsCONTENT", "group__AttrIsAttributeName.html#gac97bd371ff8401f13a333273e5e3bf22", null ],
-    [ "tidyAttrIsTITLE", "group__AttrIsAttributeName.html#ga6a47ddd81d777ff5a086bedc4e951040", null ],
-    [ "tidyAttrIsXMLNS", "group__AttrIsAttributeName.html#ga1147ae3c7c35ba4d4241832733859b78", null ],
-    [ "tidyAttrIsDATAFLD", "group__AttrIsAttributeName.html#ga3e3baf9e8a4ebe112b1865f3eb4b51fe", null ],
-    [ "tidyAttrIsWIDTH", "group__AttrIsAttributeName.html#ga7c62cdc314ebba251cf25f0eeec02f56", null ],
-    [ "tidyAttrIsHEIGHT", "group__AttrIsAttributeName.html#gaeb9e235fbc570a2fd73584e9c5a992be", null ],
-    [ "tidyAttrIsFOR", "group__AttrIsAttributeName.html#ga9eb541ed5e3b751a5d1fc1350443b5e6", null ],
-    [ "tidyAttrIsSELECTED", "group__AttrIsAttributeName.html#ga8a6824904535e40e3bdc2b17c4cf9dd2", null ],
-    [ "tidyAttrIsCHECKED", "group__AttrIsAttributeName.html#gae55a371bf3b146788b217be62499aa35", null ],
-    [ "tidyAttrIsLANG", "group__AttrIsAttributeName.html#gae8f47e206721fffc4eda7ca4af79e01e", null ],
-    [ "tidyAttrIsTARGET", "group__AttrIsAttributeName.html#ga315f297329d38bd0b69307e329699bd6", null ],
-    [ "tidyAttrIsHTTP_EQUIV", "group__AttrIsAttributeName.html#gaee94d3e34dd79b67e82c738e35076818", null ],
-    [ "tidyAttrIsREL", "group__AttrIsAttributeName.html#ga58a482b3e743570dcb88b64b9c93f172", null ],
-    [ "tidyAttrIsOnMOUSEMOVE", "group__AttrIsAttributeName.html#gad69f1e1cf8a7cf6d70359b7344839e79", null ],
-    [ "tidyAttrIsOnMOUSEDOWN", "group__AttrIsAttributeName.html#ga1df15af0e642d1c1bd1bbc64ffd894e9", null ],
-    [ "tidyAttrIsOnMOUSEUP", "group__AttrIsAttributeName.html#ga71c648c7d945d5d1a1da686813ef4149", null ],
-    [ "tidyAttrIsOnCLICK", "group__AttrIsAttributeName.html#ga4e70306e72db98316ff36c07058667ec", null ],
-    [ "tidyAttrIsOnMOUSEOVER", "group__AttrIsAttributeName.html#gadea7c51060ca59643fe1c4be493f70f8", null ],
-    [ "tidyAttrIsOnMOUSEOUT", "group__AttrIsAttributeName.html#gadba041c3573d5457fbee24356d4f59fc", null ],
-    [ "tidyAttrIsOnKEYDOWN", "group__AttrIsAttributeName.html#ga5699e85b46e535b657c70b47306a08db", null ],
-    [ "tidyAttrIsOnKEYUP", "group__AttrIsAttributeName.html#gaf4d69efe322c065fef448b5d5b48b8f7", null ],
-    [ "tidyAttrIsOnKEYPRESS", "group__AttrIsAttributeName.html#ga9b08c6cf7ec3f3605722486c4ba42b4f", null ],
-    [ "tidyAttrIsOnFOCUS", "group__AttrIsAttributeName.html#ga54437cfd33daef01fd9d9e63b79a20f5", null ],
-    [ "tidyAttrIsOnBLUR", "group__AttrIsAttributeName.html#gab704326c008f437a30878b8dd632ecca", null ],
-    [ "tidyAttrIsBGCOLOR", "group__AttrIsAttributeName.html#gad75eb36382a280b90761cba07fcf1895", null ],
-    [ "tidyAttrIsLINK", "group__AttrIsAttributeName.html#ga5d88a7dcf98264502e1a2a18014f58a7", null ],
-    [ "tidyAttrIsALINK", "group__AttrIsAttributeName.html#ga73acdbe07d9f4263897c2d7ef2f55a8d", null ],
-    [ "tidyAttrIsVLINK", "group__AttrIsAttributeName.html#ga502ead90e7b121fd1ae1b034a2a046da", null ],
-    [ "tidyAttrIsTEXT", "group__AttrIsAttributeName.html#ga7c6fde56b1bb05a07043ac1b69a72db8", null ],
-    [ "tidyAttrIsSTYLE", "group__AttrIsAttributeName.html#ga93224d5a31b94c82a4f97577338c3a59", null ],
-    [ "tidyAttrIsABBR", "group__AttrIsAttributeName.html#ga763c7d67faa40b48a0485d4aaeddf694", null ],
-    [ "tidyAttrIsCOLSPAN", "group__AttrIsAttributeName.html#ga69119cd18a1fb79bb02b78f8bf145f81", null ],
-    [ "tidyAttrIsROWSPAN", "group__AttrIsAttributeName.html#gaee7e2dfe999d6831d3af1e826dcf3c22", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Attribute.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Attribute.html
deleted file mode 100644
index dc581f0..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Attribute.html
+++ /dev/null
@@ -1,97 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Attribute Interrogation</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__Attribute.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#groups">Modules</a> &#124;
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Attribute Interrogation</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="groups"></a>
-Modules</h2></td></tr>
-<tr class="memitem:group__AttrIsAttributeName"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__AttrIsAttributeName.html">Deprecated attribute interrogation per AttrId</a></td></tr>
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:ga42c5074e590ed76a7a641dfd179471d9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga42c5074e590ed76a7a641dfd179471d9"></a>
-TidyAttrId TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetId</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga1e4d8ec29e240a6415b2caa7fff2b502"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1e4d8ec29e240a6415b2caa7fff2b502"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsEvent</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga9f52a0de76388df02294718c573911bd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9f52a0de76388df02294718c573911bd"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsProp</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<p>Get information about any given attribute. </p>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Attribute.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Attribute.js
deleted file mode 100644
index 36dfafb..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Attribute.js
+++ /dev/null
@@ -1,7 +0,0 @@
-var group__Attribute =
-[
-    [ "Deprecated attribute interrogation per AttrId", "group__AttrIsAttributeName.html", "group__AttrIsAttributeName" ],
-    [ "tidyAttrGetId", "group__Attribute.html#ga42c5074e590ed76a7a641dfd179471d9", null ],
-    [ "tidyAttrIsEvent", "group__Attribute.html#ga1e4d8ec29e240a6415b2caa7fff2b502", null ],
-    [ "tidyAttrIsProp", "group__Attribute.html#ga9f52a0de76388df02294718c573911bd", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Basic.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Basic.html
deleted file mode 100644
index 2d8b534..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Basic.html
+++ /dev/null
@@ -1,609 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Basic Operations</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__Basic.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Basic Operations</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:ga728e98da5985ecb26de7c6c45f7fcaf2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga728e98da5985ecb26de7c6c45f7fcaf2"></a>
-<a class="el" href="structTidyDoc.html">TidyDoc</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyCreate</b> (void)</td></tr>
-<tr class="memitem:gaf58ea992501470e0998182a1c75df2aa"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf58ea992501470e0998182a1c75df2aa"></a>
-<a class="el" href="structTidyDoc.html">TidyDoc</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyCreateWithAllocator</b> (<a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *allocator)</td></tr>
-<tr class="memitem:gacc380c1451088b89898a85337b113713"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gacc380c1451088b89898a85337b113713"></a>
-void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyRelease</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gaa1a9f78be3542868ac10481e2efa8708"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708">tidySetAppData</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, void *appData)</td></tr>
-<tr class="memitem:ga1319c9757d4f8c596615e0fdcfcf2504"><td class="memItemLeft" align="right" valign="top">void *TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504">tidyGetAppData</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gab7b404ada690635341d2e2d332102b36"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gab7b404ada690635341d2e2d332102b36">tidyReleaseDate</a> (void)</td></tr>
-<tr class="memitem:gaf45a8fb57fb9bfce89c42e1cc9d3e760"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760">tidyStatus</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga8fbec4bc2b67c4f525440cfc7196b443"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443">tidyDetectedHtmlVersion</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gaf3279c9a0506629d2ae766c31c1de48d"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d">tidyDetectedXhtml</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga8dd761b5e230119f8eb6c412f12fdec2"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2">tidyDetectedGenericXml</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga3617548e3669d00ad074daaaa8f3460d"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d">tidyErrorCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga29b0c36f75584a2a26422b021561f19c"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga29b0c36f75584a2a26422b021561f19c">tidyWarningCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga56ad617084cdcbb485f06f597de7dedb"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb">tidyAccessWarningCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gac17c01a0dbb8f73bdee29df48e499988"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988">tidyConfigErrorCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga2dec710c0d4927e76a7b0d338b11693a"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a">tidyLoadConfig</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr configFile)</td></tr>
-<tr class="memitem:gac677de148c6f00fc96a682c21433ab1c"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gac677de148c6f00fc96a682c21433ab1c">tidyLoadConfigEnc</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr configFile, ctmbstr charenc)</td></tr>
-<tr class="memitem:gac10c770d6ea5a0610159ad17f8427943"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac10c770d6ea5a0610159ad17f8427943"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyFileExists</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr filename)</td></tr>
-<tr class="memitem:ga2612e184472c2a59ca822a37d030e9af"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga2612e184472c2a59ca822a37d030e9af">tidySetCharEncoding</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam)</td></tr>
-<tr class="memitem:ga05203a9193542a67b8396cf6ca8acf59"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59">tidySetInCharEncoding</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam)</td></tr>
-<tr class="memitem:ga9b6bd07e38bf320cf88663a29967f1e9"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9">tidySetOutCharEncoding</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam)</td></tr>
-<tr class="memitem:gaaa6e0510b0d7ca0524c928143488c6ca"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca">tidyOptSaveFile</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr cfgfil)</td></tr>
-<tr class="memitem:gabf30cc37e3e7aa07dd351f083ab747ee"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee">tidyOptSaveSink</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink)</td></tr>
-<tr class="memitem:ga4c050ea7d2746db948ad45edb2264d70"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70">tidyErrorSummary</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga28384bf13bf6962c8ef0bcab9b4b7971"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971">tidyGeneralInfo</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<p>Tidy public interface</p>
-<p>Several functions return an integer document status:</p>
-<pre>
- 0    -&gt; SUCCESS
- &gt;0   -&gt; 1 == TIDY WARNING, 2 == TIDY ERROR
- &lt;0   -&gt; SEVERE ERROR
- </pre><p>The following is a short example program.</p>
-<pre>
-<h1>include &lt;<a class="el" href="tidy_8h.html">tidy.h</a>&gt;</h1>
-</pre><pre>
-<h1>include &lt;<a class="el" href="buffio_8h.html">buffio.h</a>&gt;</h1>
-</pre><pre>
-<h1>include &lt;stdio.h&gt;</h1>
-</pre><pre>
-<h1>include &lt;errno.h&gt;</h1>
-</pre><pre></pre><pre>int main(int argc, char **argv )
-{
-  const char* input = "&amp;lt;title&amp;gt;Foo&amp;lt;/title&amp;gt;&amp;lt;p&amp;gt;Foo!";
-  TidyBuffer output;
-  TidyBuffer errbuf;
-  int rc = -1;
-  Bool ok;</pre><pre> <a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc = tidyCreate();                     // Initialize "document"
-  tidyBufInit( &amp;output );
-  tidyBufInit( &amp;errbuf );
-  printf( "Tidying:\t\%s\\n", input );</pre><pre> ok = tidyOptSetBool( tdoc, TidyXhtmlOut, yes );  // Convert to XHTML
-  if ( ok )
-    rc = tidySetErrorBuffer( tdoc, &amp;errbuf );      // Capture diagnostics
-  if ( rc &gt;= 0 )
-    rc = tidyParseString( tdoc, input );           // Parse the input
-  if ( rc &gt;= 0 )
-    rc = tidyCleanAndRepair( tdoc );               // Tidy it up!
-  if ( rc &gt;= 0 )
-    rc = tidyRunDiagnostics( tdoc );               // Kvetch
-  if ( rc &gt; 1 )                                    // If error, force output.
-    rc = ( tidyOptSetBool(tdoc, TidyForceOutput, yes) ? rc : -1 );
-  if ( rc &gt;= 0 )
-    rc = tidySaveBuffer( tdoc, &amp;output );          // Pretty Print</pre><pre> if ( rc &gt;= 0 )
-  {
-    if ( rc &gt; 0 )
-      printf( "\\nDiagnostics:\\n\\n\%s", errbuf.bp );
-    printf( "\\nAnd here is the result:\\n\\n\%s", output.bp );
-  }
-  else
-    printf( "A severe error (\%d) occurred.\\n", rc );</pre><pre> tidyBufFree( &amp;output );
-  tidyBufFree( &amp;errbuf );
-  tidyRelease( tdoc );
-  return rc;
-}
-</pre> <hr/><h2>Function Documentation</h2>
-<a class="anchor" id="gaa1a9f78be3542868ac10481e2efa8708"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708">tidySetAppData</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">void *&#160;</td>
-          <td class="paramname"><em>appData</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Let application store a chunk of data w/ each Tidy instance. Useful for callbacks. </p>
-
-</div>
-</div>
-<a class="anchor" id="ga1319c9757d4f8c596615e0fdcfcf2504"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void* TIDY_CALL <a class="el" href="group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504">tidyGetAppData</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get application data set previously </p>
-
-</div>
-</div>
-<a class="anchor" id="gab7b404ada690635341d2e2d332102b36"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">ctmbstr TIDY_CALL <a class="el" href="group__Basic.html#gab7b404ada690635341d2e2d332102b36">tidyReleaseDate</a> </td>
-          <td>(</td>
-          <td class="paramtype">void&#160;</td>
-          <td class="paramname"></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get release date (version) for current library </p>
-
-</div>
-</div>
-<a class="anchor" id="gaf45a8fb57fb9bfce89c42e1cc9d3e760"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760">tidyStatus</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get status of current document. </p>
-
-</div>
-</div>
-<a class="anchor" id="ga8fbec4bc2b67c4f525440cfc7196b443"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443">tidyDetectedHtmlVersion</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Detected HTML version: 0, 2, 3 or 4 </p>
-
-</div>
-</div>
-<a class="anchor" id="gaf3279c9a0506629d2ae766c31c1de48d"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d">tidyDetectedXhtml</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Input is XHTML? </p>
-
-</div>
-</div>
-<a class="anchor" id="ga8dd761b5e230119f8eb6c412f12fdec2"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2">tidyDetectedGenericXml</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Input is generic XML (not HTML or XHTML)? </p>
-
-</div>
-</div>
-<a class="anchor" id="ga3617548e3669d00ad074daaaa8f3460d"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">uint TIDY_CALL <a class="el" href="group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d">tidyErrorCount</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Number of Tidy errors encountered. If &gt; 0, output is suppressed unless TidyForceOutput is set. </p>
-
-</div>
-</div>
-<a class="anchor" id="ga29b0c36f75584a2a26422b021561f19c"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">uint TIDY_CALL <a class="el" href="group__Basic.html#ga29b0c36f75584a2a26422b021561f19c">tidyWarningCount</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Number of Tidy warnings encountered. </p>
-
-</div>
-</div>
-<a class="anchor" id="ga56ad617084cdcbb485f06f597de7dedb"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">uint TIDY_CALL <a class="el" href="group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb">tidyAccessWarningCount</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Number of Tidy accessibility warnings encountered. </p>
-
-</div>
-</div>
-<a class="anchor" id="gac17c01a0dbb8f73bdee29df48e499988"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">uint TIDY_CALL <a class="el" href="group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988">tidyConfigErrorCount</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Number of Tidy configuration errors encountered. </p>
-
-</div>
-</div>
-<a class="anchor" id="ga2dec710c0d4927e76a7b0d338b11693a"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a">tidyLoadConfig</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>configFile</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Load an ASCII Tidy configuration file </p>
-
-</div>
-</div>
-<a class="anchor" id="gac677de148c6f00fc96a682c21433ab1c"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#gac677de148c6f00fc96a682c21433ab1c">tidyLoadConfigEnc</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>configFile</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>charenc</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Load a Tidy configuration file with the specified character encoding </p>
-
-</div>
-</div>
-<a class="anchor" id="ga2612e184472c2a59ca822a37d030e9af"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#ga2612e184472c2a59ca822a37d030e9af">tidySetCharEncoding</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>encnam</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Set the input/output character encoding for parsing markup. Values include: ascii, latin1, raw, utf8, iso2022, mac, win1252, utf16le, utf16be, utf16, big5 and shiftjis. Case in-sensitive. </p>
-
-</div>
-</div>
-<a class="anchor" id="ga05203a9193542a67b8396cf6ca8acf59"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59">tidySetInCharEncoding</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>encnam</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Set the input encoding for parsing markup. As for tidySetCharEncoding but only affects the input encoding </p>
-
-</div>
-</div>
-<a class="anchor" id="ga9b6bd07e38bf320cf88663a29967f1e9"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9">tidySetOutCharEncoding</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>encnam</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Set the output encoding. </p>
-
-</div>
-</div>
-<a class="anchor" id="gaaa6e0510b0d7ca0524c928143488c6ca"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca">tidyOptSaveFile</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>cfgfil</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Save current settings to named file. Only non-default values are written. </p>
-
-</div>
-</div>
-<a class="anchor" id="gabf30cc37e3e7aa07dd351f083ab747ee"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee">tidyOptSaveSink</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *&#160;</td>
-          <td class="paramname"><em>sink</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Save current settings to given output sink. Only non-default values are written. </p>
-
-</div>
-</div>
-<a class="anchor" id="ga4c050ea7d2746db948ad45edb2264d70"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70">tidyErrorSummary</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Write more complete information about errors to current error sink. </p>
-
-</div>
-</div>
-<a class="anchor" id="ga28384bf13bf6962c8ef0bcab9b4b7971"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971">tidyGeneralInfo</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Write more general information about markup to current error sink. </p>
-
-</div>
-</div>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Basic.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Basic.js
deleted file mode 100644
index 0d3aca1..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Basic.js
+++ /dev/null
@@ -1,27 +0,0 @@
-var group__Basic =
-[
-    [ "tidyCreate", "group__Basic.html#ga728e98da5985ecb26de7c6c45f7fcaf2", null ],
-    [ "tidyCreateWithAllocator", "group__Basic.html#gaf58ea992501470e0998182a1c75df2aa", null ],
-    [ "tidyRelease", "group__Basic.html#gacc380c1451088b89898a85337b113713", null ],
-    [ "tidySetAppData", "group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708", null ],
-    [ "tidyGetAppData", "group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504", null ],
-    [ "tidyReleaseDate", "group__Basic.html#gab7b404ada690635341d2e2d332102b36", null ],
-    [ "tidyStatus", "group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760", null ],
-    [ "tidyDetectedHtmlVersion", "group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443", null ],
-    [ "tidyDetectedXhtml", "group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d", null ],
-    [ "tidyDetectedGenericXml", "group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2", null ],
-    [ "tidyErrorCount", "group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d", null ],
-    [ "tidyWarningCount", "group__Basic.html#ga29b0c36f75584a2a26422b021561f19c", null ],
-    [ "tidyAccessWarningCount", "group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb", null ],
-    [ "tidyConfigErrorCount", "group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988", null ],
-    [ "tidyLoadConfig", "group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a", null ],
-    [ "tidyLoadConfigEnc", "group__Basic.html#gac677de148c6f00fc96a682c21433ab1c", null ],
-    [ "tidyFileExists", "group__Basic.html#gac10c770d6ea5a0610159ad17f8427943", null ],
-    [ "tidySetCharEncoding", "group__Basic.html#ga2612e184472c2a59ca822a37d030e9af", null ],
-    [ "tidySetInCharEncoding", "group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59", null ],
-    [ "tidySetOutCharEncoding", "group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9", null ],
-    [ "tidyOptSaveFile", "group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca", null ],
-    [ "tidyOptSaveSink", "group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee", null ],
-    [ "tidyErrorSummary", "group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70", null ],
-    [ "tidyGeneralInfo", "group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Clean.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Clean.html
deleted file mode 100644
index 34bbd70..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Clean.html
+++ /dev/null
@@ -1,124 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Diagnostics and Repair</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__Clean.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Diagnostics and Repair</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:ga11fd23eeb4acfaa0f9501effa0c21269"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidyCleanAndRepair</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga6170500974cc02114f6e4a29d44b7d77"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77">tidyRunDiagnostics</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-</table>
-<hr/><h2>Function Documentation</h2>
-<a class="anchor" id="ga11fd23eeb4acfaa0f9501effa0c21269"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidyCleanAndRepair</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Execute configured cleanup and repair operations on parsed markup </p>
-
-</div>
-</div>
-<a class="anchor" id="ga6170500974cc02114f6e4a29d44b7d77"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77">tidyRunDiagnostics</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Run configured diagnostics on parsed and repaired markup. Must call <a class="el" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidyCleanAndRepair()</a> first. </p>
-
-</div>
-</div>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Clean.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Clean.js
deleted file mode 100644
index e4222ab..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Clean.js
+++ /dev/null
@@ -1,5 +0,0 @@
-var group__Clean =
-[
-    [ "tidyCleanAndRepair", "group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269", null ],
-    [ "tidyRunDiagnostics", "group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Configuration.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Configuration.html
deleted file mode 100644
index b788b43..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Configuration.html
+++ /dev/null
@@ -1,1020 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Configuration Options</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__Configuration.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#typedef-members">Typedefs</a> &#124;
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Configuration Options</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="typedef-members"></a>
-Typedefs</h2></td></tr>
-<tr class="memitem:gaee8a8bcb6091bd36f6fc20507a4544fc"><td class="memItemLeft" align="right" valign="top">typedef Bool(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">TidyOptCallback</a> )(ctmbstr option, ctmbstr value)</td></tr>
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:gab94961700088d2daf8dcc012a5e33e49"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab94961700088d2daf8dcc012a5e33e49"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidySetOptionCallback</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">TidyOptCallback</a> pOptCallback)</td></tr>
-<tr class="memitem:ga500f31ba81d015b8ce9dad6f2a6ade75"><td class="memItemLeft" align="right" valign="top">TidyOptionId TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga500f31ba81d015b8ce9dad6f2a6ade75">tidyOptGetIdForName</a> (ctmbstr optnam)</td></tr>
-<tr class="memitem:gab92a35ffbd3b0b668534d63f94d2486f"><td class="memItemLeft" align="right" valign="top">TidyIterator TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gab92a35ffbd3b0b668534d63f94d2486f">tidyGetOptionList</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga1a3088dacc539487e00f1eb4009dafc0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga1a3088dacc539487e00f1eb4009dafc0">tidyGetNextOption</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyIterator *pos)</td></tr>
-<tr class="memitem:ga030c695d6407b2756856eb1862642cfe"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga030c695d6407b2756856eb1862642cfe">tidyGetOption</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:gaeae2e147645697fc54234ff2526a8108"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gaeae2e147645697fc54234ff2526a8108">tidyGetOptionByName</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr optnam)</td></tr>
-<tr class="memitem:ga51cf095b76921b4e290e14814998f096"><td class="memItemLeft" align="right" valign="top">TidyOptionId TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga51cf095b76921b4e290e14814998f096">tidyOptGetId</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gaf370cd2ea113747f50da185fda24adcb"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gaf370cd2ea113747f50da185fda24adcb">tidyOptGetName</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:ga06e2685cc2950b182ff2f7136d170a34"><td class="memItemLeft" align="right" valign="top">TidyOptionType TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga06e2685cc2950b182ff2f7136d170a34">tidyOptGetType</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:ga6aba2ccdb1237a70f5fe1393fee0ce4d"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga6aba2ccdb1237a70f5fe1393fee0ce4d">tidyOptIsReadOnly</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:ga1d8b72e64e4d949dc21599fa788e842f"><td class="memItemLeft" align="right" valign="top">TidyConfigCategory TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga1d8b72e64e4d949dc21599fa788e842f">tidyOptGetCategory</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gab9e02c9927fe2c382ec5f81b4acf9cb4"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gab9e02c9927fe2c382ec5f81b4acf9cb4">tidyOptGetDefault</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gafc8df35e864dd3a24f23aca3c2f8bd9d"><td class="memItemLeft" align="right" valign="top">ulong TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gafc8df35e864dd3a24f23aca3c2f8bd9d">tidyOptGetDefaultInt</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gadadea4da66e3718e02b720c2b59d170b"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gadadea4da66e3718e02b720c2b59d170b">tidyOptGetDefaultBool</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:ga31f815fe2b5bf1e00d6b50be62edd0ab"><td class="memItemLeft" align="right" valign="top">TidyIterator TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga31f815fe2b5bf1e00d6b50be62edd0ab">tidyOptGetPickList</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gad1366c5c458f38d2a9c6a6335e6704d9"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gad1366c5c458f38d2a9c6a6335e6704d9">tidyOptGetNextPick</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt, TidyIterator *pos)</td></tr>
-<tr class="memitem:ga0fbe23ab1e4ec374fa38e6f514617e4d"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga0fbe23ab1e4ec374fa38e6f514617e4d">tidyOptGetValue</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:gaf37bdad3b6809d8cb78e7d6316d4ba69"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gaf37bdad3b6809d8cb78e7d6316d4ba69">tidyOptSetValue</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId, ctmbstr val)</td></tr>
-<tr class="memitem:gad09fbcbbaf83fbf93e0d7be9c9bb30c0"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gad09fbcbbaf83fbf93e0d7be9c9bb30c0">tidyOptParseValue</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr optnam, ctmbstr val)</td></tr>
-<tr class="memitem:ga7ff683612d446b07318517e564cccc7a"><td class="memItemLeft" align="right" valign="top">ulong TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga7ff683612d446b07318517e564cccc7a">tidyOptGetInt</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:gad9e75a64c8dcbc54e791959cf934e1ad"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gad9e75a64c8dcbc54e791959cf934e1ad">tidyOptSetInt</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId, ulong val)</td></tr>
-<tr class="memitem:ga09e6c999e9e7ebc94ea3d9cf5d674125"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga09e6c999e9e7ebc94ea3d9cf5d674125">tidyOptGetBool</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:gac9de7e155bea5c28713f2bfb93614472"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gac9de7e155bea5c28713f2bfb93614472">tidyOptSetBool</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId, Bool val)</td></tr>
-<tr class="memitem:ga2aa45ad67758ca0b18d14eafa37fe080"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga2aa45ad67758ca0b18d14eafa37fe080">tidyOptResetToDefault</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId opt)</td></tr>
-<tr class="memitem:ga874ce26884f0eeaf692c30758688888a"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga874ce26884f0eeaf692c30758688888a">tidyOptResetAllToDefault</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga4beb2c73c90c3e2ae589c2642478cebd"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga4beb2c73c90c3e2ae589c2642478cebd">tidyOptSnapshot</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gae6212b8f32990763cc18a6d3f05eb191"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gae6212b8f32990763cc18a6d3f05eb191">tidyOptResetToSnapshot</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga083cb42d6f4413604240b5c1b3aa2070"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga083cb42d6f4413604240b5c1b3aa2070">tidyOptDiffThanDefault</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga793bc9e177aa90301802e44c4fc22e0e"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga793bc9e177aa90301802e44c4fc22e0e">tidyOptDiffThanSnapshot</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga0b6cb26ab5dbbe0a0841d605fbd06fad"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga0b6cb26ab5dbbe0a0841d605fbd06fad">tidyOptCopyConfig</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdocTo, <a class="el" href="structTidyDoc.html">TidyDoc</a> tdocFrom)</td></tr>
-<tr class="memitem:ga47f8502cc202fc7423937647957955a3"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga47f8502cc202fc7423937647957955a3">tidyOptGetEncName</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:ga0785047cc73d5fbc88691861a0fa9c78"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga0785047cc73d5fbc88691861a0fa9c78">tidyOptGetCurrPick</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:ga55f30cf9e507f8fc66330ec3b0132620"><td class="memItemLeft" align="right" valign="top">TidyIterator TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga55f30cf9e507f8fc66330ec3b0132620">tidyOptGetDeclTagList</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gacec933eef8f9eec3dfa4382e05cab251"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gacec933eef8f9eec3dfa4382e05cab251">tidyOptGetNextDeclTag</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId, TidyIterator *iter)</td></tr>
-<tr class="memitem:gafca3ed506463e192187133ff646a643d"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gafca3ed506463e192187133ff646a643d">tidyOptGetDoc</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f"><td class="memItemLeft" align="right" valign="top">TidyIterator TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f">tidyOptGetDocLinksList</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:ga1db79a95067d6364c02263d9492fa9e8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga1db79a95067d6364c02263d9492fa9e8">tidyOptGetNextDocLinks</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyIterator *pos)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<p>Functions for getting and setting Tidy configuration options. </p>
-<hr/><h2>Typedef Documentation</h2>
-<a class="anchor" id="gaee8a8bcb6091bd36f6fc20507a4544fc"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef Bool(TIDY_CALL * <a class="el" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">TidyOptCallback</a>)(ctmbstr option, ctmbstr value)</td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Applications using TidyLib may want to augment command-line and configuration file options. Setting this callback allows an application developer to examine command-line and configuration file options after TidyLib has examined them and failed to recognize them. </p>
-
-</div>
-</div>
-<hr/><h2>Function Documentation</h2>
-<a class="anchor" id="ga500f31ba81d015b8ce9dad6f2a6ade75"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">TidyOptionId TIDY_CALL <a class="el" href="group__Configuration.html#ga500f31ba81d015b8ce9dad6f2a6ade75">tidyOptGetIdForName</a> </td>
-          <td>(</td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>optnam</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get option ID by name </p>
-
-</div>
-</div>
-<a class="anchor" id="gab92a35ffbd3b0b668534d63f94d2486f"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">TidyIterator TIDY_CALL <a class="el" href="group__Configuration.html#gab92a35ffbd3b0b668534d63f94d2486f">tidyGetOptionList</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get iterator for list of option Example: </p>
-<pre>
-TidyIterator itOpt = tidyGetOptionList( tdoc );
-while ( itOpt )
-{
-  <a class="el" href="structTidyOption.html">TidyOption</a> opt = tidyGetNextOption( tdoc, &amp;itOpt );
-  .. get/set option values ..
-}
-</pre> 
-</div>
-</div>
-<a class="anchor" id="ga1a3088dacc539487e00f1eb4009dafc0"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL <a class="el" href="group__Configuration.html#ga1a3088dacc539487e00f1eb4009dafc0">tidyGetNextOption</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyIterator *&#160;</td>
-          <td class="paramname"><em>pos</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get next Option </p>
-
-</div>
-</div>
-<a class="anchor" id="ga030c695d6407b2756856eb1862642cfe"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL <a class="el" href="group__Configuration.html#ga030c695d6407b2756856eb1862642cfe">tidyGetOption</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyOptionId&#160;</td>
-          <td class="paramname"><em>optId</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Lookup option by ID </p>
-
-</div>
-</div>
-<a class="anchor" id="gaeae2e147645697fc54234ff2526a8108"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL <a class="el" href="group__Configuration.html#gaeae2e147645697fc54234ff2526a8108">tidyGetOptionByName</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>optnam</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Lookup option by name </p>
-
-</div>
-</div>
-<a class="anchor" id="ga51cf095b76921b4e290e14814998f096"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">TidyOptionId TIDY_CALL <a class="el" href="group__Configuration.html#ga51cf095b76921b4e290e14814998f096">tidyOptGetId</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get ID of given Option </p>
-
-</div>
-</div>
-<a class="anchor" id="gaf370cd2ea113747f50da185fda24adcb"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">ctmbstr TIDY_CALL <a class="el" href="group__Configuration.html#gaf370cd2ea113747f50da185fda24adcb">tidyOptGetName</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get name of given Option </p>
-
-</div>
-</div>
-<a class="anchor" id="ga06e2685cc2950b182ff2f7136d170a34"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">TidyOptionType TIDY_CALL <a class="el" href="group__Configuration.html#ga06e2685cc2950b182ff2f7136d170a34">tidyOptGetType</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get datatype of given Option </p>
-
-</div>
-</div>
-<a class="anchor" id="ga6aba2ccdb1237a70f5fe1393fee0ce4d"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#ga6aba2ccdb1237a70f5fe1393fee0ce4d">tidyOptIsReadOnly</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Is Option read-only? </p>
-
-</div>
-</div>
-<a class="anchor" id="ga1d8b72e64e4d949dc21599fa788e842f"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">TidyConfigCategory TIDY_CALL <a class="el" href="group__Configuration.html#ga1d8b72e64e4d949dc21599fa788e842f">tidyOptGetCategory</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get category of given Option </p>
-
-</div>
-</div>
-<a class="anchor" id="gab9e02c9927fe2c382ec5f81b4acf9cb4"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">ctmbstr TIDY_CALL <a class="el" href="group__Configuration.html#gab9e02c9927fe2c382ec5f81b4acf9cb4">tidyOptGetDefault</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get default value of given Option as a string </p>
-
-</div>
-</div>
-<a class="anchor" id="gafc8df35e864dd3a24f23aca3c2f8bd9d"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">ulong TIDY_CALL <a class="el" href="group__Configuration.html#gafc8df35e864dd3a24f23aca3c2f8bd9d">tidyOptGetDefaultInt</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get default value of given Option as an unsigned integer </p>
-
-</div>
-</div>
-<a class="anchor" id="gadadea4da66e3718e02b720c2b59d170b"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#gadadea4da66e3718e02b720c2b59d170b">tidyOptGetDefaultBool</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get default value of given Option as a Boolean value </p>
-
-</div>
-</div>
-<a class="anchor" id="ga31f815fe2b5bf1e00d6b50be62edd0ab"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">TidyIterator TIDY_CALL <a class="el" href="group__Configuration.html#ga31f815fe2b5bf1e00d6b50be62edd0ab">tidyOptGetPickList</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Iterate over Option "pick list" </p>
-
-</div>
-</div>
-<a class="anchor" id="gad1366c5c458f38d2a9c6a6335e6704d9"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">ctmbstr TIDY_CALL <a class="el" href="group__Configuration.html#gad1366c5c458f38d2a9c6a6335e6704d9">tidyOptGetNextPick</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyIterator *&#160;</td>
-          <td class="paramname"><em>pos</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get next string value of Option "pick list" </p>
-
-</div>
-</div>
-<a class="anchor" id="ga0fbe23ab1e4ec374fa38e6f514617e4d"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">ctmbstr TIDY_CALL <a class="el" href="group__Configuration.html#ga0fbe23ab1e4ec374fa38e6f514617e4d">tidyOptGetValue</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyOptionId&#160;</td>
-          <td class="paramname"><em>optId</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get current Option value as a string </p>
-
-</div>
-</div>
-<a class="anchor" id="gaf37bdad3b6809d8cb78e7d6316d4ba69"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#gaf37bdad3b6809d8cb78e7d6316d4ba69">tidyOptSetValue</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyOptionId&#160;</td>
-          <td class="paramname"><em>optId</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>val</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Set Option value as a string </p>
-
-</div>
-</div>
-<a class="anchor" id="gad09fbcbbaf83fbf93e0d7be9c9bb30c0"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#gad09fbcbbaf83fbf93e0d7be9c9bb30c0">tidyOptParseValue</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>optnam</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>val</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Set named Option value as a string. Good if not sure of type. </p>
-
-</div>
-</div>
-<a class="anchor" id="ga7ff683612d446b07318517e564cccc7a"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">ulong TIDY_CALL <a class="el" href="group__Configuration.html#ga7ff683612d446b07318517e564cccc7a">tidyOptGetInt</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyOptionId&#160;</td>
-          <td class="paramname"><em>optId</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get current Option value as an integer </p>
-
-</div>
-</div>
-<a class="anchor" id="gad9e75a64c8dcbc54e791959cf934e1ad"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#gad9e75a64c8dcbc54e791959cf934e1ad">tidyOptSetInt</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyOptionId&#160;</td>
-          <td class="paramname"><em>optId</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ulong&#160;</td>
-          <td class="paramname"><em>val</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Set Option value as an integer </p>
-
-</div>
-</div>
-<a class="anchor" id="ga09e6c999e9e7ebc94ea3d9cf5d674125"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#ga09e6c999e9e7ebc94ea3d9cf5d674125">tidyOptGetBool</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyOptionId&#160;</td>
-          <td class="paramname"><em>optId</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get current Option value as a Boolean flag </p>
-
-</div>
-</div>
-<a class="anchor" id="gac9de7e155bea5c28713f2bfb93614472"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#gac9de7e155bea5c28713f2bfb93614472">tidyOptSetBool</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyOptionId&#160;</td>
-          <td class="paramname"><em>optId</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">Bool&#160;</td>
-          <td class="paramname"><em>val</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Set Option value as a Boolean flag </p>
-
-</div>
-</div>
-<a class="anchor" id="ga2aa45ad67758ca0b18d14eafa37fe080"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#ga2aa45ad67758ca0b18d14eafa37fe080">tidyOptResetToDefault</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyOptionId&#160;</td>
-          <td class="paramname"><em>opt</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Reset option to default value by ID </p>
-
-</div>
-</div>
-<a class="anchor" id="ga874ce26884f0eeaf692c30758688888a"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#ga874ce26884f0eeaf692c30758688888a">tidyOptResetAllToDefault</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Reset all options to their default values </p>
-
-</div>
-</div>
-<a class="anchor" id="ga4beb2c73c90c3e2ae589c2642478cebd"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#ga4beb2c73c90c3e2ae589c2642478cebd">tidyOptSnapshot</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Take a snapshot of current config settings </p>
-
-</div>
-</div>
-<a class="anchor" id="gae6212b8f32990763cc18a6d3f05eb191"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#gae6212b8f32990763cc18a6d3f05eb191">tidyOptResetToSnapshot</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Reset config settings to snapshot (after document processing) </p>
-
-</div>
-</div>
-<a class="anchor" id="ga083cb42d6f4413604240b5c1b3aa2070"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#ga083cb42d6f4413604240b5c1b3aa2070">tidyOptDiffThanDefault</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Any settings different than default? </p>
-
-</div>
-</div>
-<a class="anchor" id="ga793bc9e177aa90301802e44c4fc22e0e"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#ga793bc9e177aa90301802e44c4fc22e0e">tidyOptDiffThanSnapshot</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Any settings different than snapshot? </p>
-
-</div>
-</div>
-<a class="anchor" id="ga0b6cb26ab5dbbe0a0841d605fbd06fad"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Configuration.html#ga0b6cb26ab5dbbe0a0841d605fbd06fad">tidyOptCopyConfig</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdocTo</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdocFrom</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Copy current configuration settings from one document to another </p>
-
-</div>
-</div>
-<a class="anchor" id="ga47f8502cc202fc7423937647957955a3"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">ctmbstr TIDY_CALL <a class="el" href="group__Configuration.html#ga47f8502cc202fc7423937647957955a3">tidyOptGetEncName</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyOptionId&#160;</td>
-          <td class="paramname"><em>optId</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get character encoding name. Used with TidyCharEncoding, TidyOutCharEncoding, TidyInCharEncoding </p>
-
-</div>
-</div>
-<a class="anchor" id="ga0785047cc73d5fbc88691861a0fa9c78"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">ctmbstr TIDY_CALL <a class="el" href="group__Configuration.html#ga0785047cc73d5fbc88691861a0fa9c78">tidyOptGetCurrPick</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyOptionId&#160;</td>
-          <td class="paramname"><em>optId</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get current pick list value for option by ID. Useful for enum types. </p>
-
-</div>
-</div>
-<a class="anchor" id="ga55f30cf9e507f8fc66330ec3b0132620"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">TidyIterator TIDY_CALL <a class="el" href="group__Configuration.html#ga55f30cf9e507f8fc66330ec3b0132620">tidyOptGetDeclTagList</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Iterate over user declared tags </p>
-
-</div>
-</div>
-<a class="anchor" id="gacec933eef8f9eec3dfa4382e05cab251"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">ctmbstr TIDY_CALL <a class="el" href="group__Configuration.html#gacec933eef8f9eec3dfa4382e05cab251">tidyOptGetNextDeclTag</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyOptionId&#160;</td>
-          <td class="paramname"><em>optId</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyIterator *&#160;</td>
-          <td class="paramname"><em>iter</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get next declared tag of specified type: TidyInlineTags, TidyBlockTags, TidyEmptyTags, TidyPreTags </p>
-
-</div>
-</div>
-<a class="anchor" id="gafca3ed506463e192187133ff646a643d"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">ctmbstr TIDY_CALL <a class="el" href="group__Configuration.html#gafca3ed506463e192187133ff646a643d">tidyOptGetDoc</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get option description </p>
-
-</div>
-</div>
-<a class="anchor" id="gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">TidyIterator TIDY_CALL <a class="el" href="group__Configuration.html#gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f">tidyOptGetDocLinksList</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="structTidyOption.html">TidyOption</a>&#160;</td>
-          <td class="paramname"><em>opt</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Iterate over a list of related options </p>
-
-</div>
-</div>
-<a class="anchor" id="ga1db79a95067d6364c02263d9492fa9e8"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL <a class="el" href="group__Configuration.html#ga1db79a95067d6364c02263d9492fa9e8">tidyOptGetNextDocLinks</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">TidyIterator *&#160;</td>
-          <td class="paramname"><em>pos</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Get next related option </p>
-
-</div>
-</div>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Configuration.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Configuration.js
deleted file mode 100644
index 6109547..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Configuration.js
+++ /dev/null
@@ -1,41 +0,0 @@
-var group__Configuration =
-[
-    [ "TidyOptCallback", "group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc", null ],
-    [ "tidySetOptionCallback", "group__Configuration.html#gab94961700088d2daf8dcc012a5e33e49", null ],
-    [ "tidyOptGetIdForName", "group__Configuration.html#ga500f31ba81d015b8ce9dad6f2a6ade75", null ],
-    [ "tidyGetOptionList", "group__Configuration.html#gab92a35ffbd3b0b668534d63f94d2486f", null ],
-    [ "tidyGetNextOption", "group__Configuration.html#ga1a3088dacc539487e00f1eb4009dafc0", null ],
-    [ "tidyGetOption", "group__Configuration.html#ga030c695d6407b2756856eb1862642cfe", null ],
-    [ "tidyGetOptionByName", "group__Configuration.html#gaeae2e147645697fc54234ff2526a8108", null ],
-    [ "tidyOptGetId", "group__Configuration.html#ga51cf095b76921b4e290e14814998f096", null ],
-    [ "tidyOptGetName", "group__Configuration.html#gaf370cd2ea113747f50da185fda24adcb", null ],
-    [ "tidyOptGetType", "group__Configuration.html#ga06e2685cc2950b182ff2f7136d170a34", null ],
-    [ "tidyOptIsReadOnly", "group__Configuration.html#ga6aba2ccdb1237a70f5fe1393fee0ce4d", null ],
-    [ "tidyOptGetCategory", "group__Configuration.html#ga1d8b72e64e4d949dc21599fa788e842f", null ],
-    [ "tidyOptGetDefault", "group__Configuration.html#gab9e02c9927fe2c382ec5f81b4acf9cb4", null ],
-    [ "tidyOptGetDefaultInt", "group__Configuration.html#gafc8df35e864dd3a24f23aca3c2f8bd9d", null ],
-    [ "tidyOptGetDefaultBool", "group__Configuration.html#gadadea4da66e3718e02b720c2b59d170b", null ],
-    [ "tidyOptGetPickList", "group__Configuration.html#ga31f815fe2b5bf1e00d6b50be62edd0ab", null ],
-    [ "tidyOptGetNextPick", "group__Configuration.html#gad1366c5c458f38d2a9c6a6335e6704d9", null ],
-    [ "tidyOptGetValue", "group__Configuration.html#ga0fbe23ab1e4ec374fa38e6f514617e4d", null ],
-    [ "tidyOptSetValue", "group__Configuration.html#gaf37bdad3b6809d8cb78e7d6316d4ba69", null ],
-    [ "tidyOptParseValue", "group__Configuration.html#gad09fbcbbaf83fbf93e0d7be9c9bb30c0", null ],
-    [ "tidyOptGetInt", "group__Configuration.html#ga7ff683612d446b07318517e564cccc7a", null ],
-    [ "tidyOptSetInt", "group__Configuration.html#gad9e75a64c8dcbc54e791959cf934e1ad", null ],
-    [ "tidyOptGetBool", "group__Configuration.html#ga09e6c999e9e7ebc94ea3d9cf5d674125", null ],
-    [ "tidyOptSetBool", "group__Configuration.html#gac9de7e155bea5c28713f2bfb93614472", null ],
-    [ "tidyOptResetToDefault", "group__Configuration.html#ga2aa45ad67758ca0b18d14eafa37fe080", null ],
-    [ "tidyOptResetAllToDefault", "group__Configuration.html#ga874ce26884f0eeaf692c30758688888a", null ],
-    [ "tidyOptSnapshot", "group__Configuration.html#ga4beb2c73c90c3e2ae589c2642478cebd", null ],
-    [ "tidyOptResetToSnapshot", "group__Configuration.html#gae6212b8f32990763cc18a6d3f05eb191", null ],
-    [ "tidyOptDiffThanDefault", "group__Configuration.html#ga083cb42d6f4413604240b5c1b3aa2070", null ],
-    [ "tidyOptDiffThanSnapshot", "group__Configuration.html#ga793bc9e177aa90301802e44c4fc22e0e", null ],
-    [ "tidyOptCopyConfig", "group__Configuration.html#ga0b6cb26ab5dbbe0a0841d605fbd06fad", null ],
-    [ "tidyOptGetEncName", "group__Configuration.html#ga47f8502cc202fc7423937647957955a3", null ],
-    [ "tidyOptGetCurrPick", "group__Configuration.html#ga0785047cc73d5fbc88691861a0fa9c78", null ],
-    [ "tidyOptGetDeclTagList", "group__Configuration.html#ga55f30cf9e507f8fc66330ec3b0132620", null ],
-    [ "tidyOptGetNextDeclTag", "group__Configuration.html#gacec933eef8f9eec3dfa4382e05cab251", null ],
-    [ "tidyOptGetDoc", "group__Configuration.html#gafca3ed506463e192187133ff646a643d", null ],
-    [ "tidyOptGetDocLinksList", "group__Configuration.html#gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f", null ],
-    [ "tidyOptGetNextDocLinks", "group__Configuration.html#ga1db79a95067d6364c02263d9492fa9e8", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__IO.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__IO.html
deleted file mode 100644
index d0e10f0..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__IO.html
+++ /dev/null
@@ -1,517 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: I/O and Messages</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__IO.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#nested-classes">Data Structures</a> &#124;
-<a href="#define-members">Defines</a> &#124;
-<a href="#typedef-members">Typedefs</a> &#124;
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">I/O and Messages</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="nested-classes"></a>
-Data Structures</h2></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a></td></tr>
-<tr><td colspan="2"><h2><a name="define-members"></a>
-Defines</h2></td></tr>
-<tr class="memitem:ga9a078b706ec6f37cce40958f6f68585a"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga9a078b706ec6f37cce40958f6f68585a">EndOfStream</a>&#160;&#160;&#160;(~0u)</td></tr>
-<tr><td colspan="2"><h2><a name="typedef-members"></a>
-Typedefs</h2></td></tr>
-<tr class="memitem:ga6951f79d4b50288e96a3896ab01393d6"><td class="memItemLeft" align="right" valign="top">typedef int(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a> )(void *sourceData)</td></tr>
-<tr class="memitem:ga298b882c5fc7cc969ef58fb187bdd371"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a> )(void *sourceData, byte bt)</td></tr>
-<tr class="memitem:ga9f8e1bb4c4740ffb399ec424594c4972"><td class="memItemLeft" align="right" valign="top">typedef Bool(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a> )(void *sourceData)</td></tr>
-<tr class="memitem:ga86fcc3c86bd63b26a559938bc38d34bb"><td class="memItemLeft" align="right" valign="top">typedef TIDY_STRUCT struct <br class="typebreak"/>
-<a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a></td></tr>
-<tr class="memitem:ga63bcce5aa5f52e4e2e22aedd750b8bbc"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a> )(void *sinkData, byte bt)</td></tr>
-<tr class="memitem:ga6bdd15de48364d2b5dbf2141109d3f98"><td class="memItemLeft" align="right" valign="top">typedef TIDY_STRUCT struct <br class="typebreak"/>
-<a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a></td></tr>
-<tr class="memitem:ga29c5bee28b95924a97ea4fbb81668c5e"><td class="memItemLeft" align="right" valign="top">typedef Bool(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a> )(<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyReportLevel lvl, uint line, uint col, ctmbstr mssg)</td></tr>
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:gab446af273e331cb0440dd01b6990d2d0"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#gab446af273e331cb0440dd01b6990d2d0">tidyInitSource</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source, void *srcData, <a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a> gbFunc, <a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a> ugbFunc, <a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a> endFunc)</td></tr>
-<tr class="memitem:gadba396ffec9f29b27d73a23264dcfa0b"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b">tidyGetByte</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source)</td></tr>
-<tr class="memitem:ga0c8d46de315cabb0ac7d2cf01ca183d7"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7">tidyUngetByte</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source, uint byteValue)</td></tr>
-<tr class="memitem:ga399df5ba17614205964a665f7b1726a6"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga399df5ba17614205964a665f7b1726a6">tidyIsEOF</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source)</td></tr>
-<tr class="memitem:ga7e93289be3a7253cdf99a96285e6a2d4"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4">tidyInitSink</a> (<a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink, void *snkData, <a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a> pbFunc)</td></tr>
-<tr class="memitem:ga2a34772782d7b786e37012fce4cd2425"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga2a34772782d7b786e37012fce4cd2425">tidyPutByte</a> (<a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink, uint byteValue)</td></tr>
-<tr class="memitem:ga51e02523601388bb83c2555b995e68b0"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga51e02523601388bb83c2555b995e68b0">tidySetReportFilter</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a> filtCallback)</td></tr>
-<tr class="memitem:ga669758031bbd5d4ba957b19e77229c8b"><td class="memItemLeft" align="right" valign="top">FILE *TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga669758031bbd5d4ba957b19e77229c8b">tidySetErrorFile</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr errfilnam)</td></tr>
-<tr class="memitem:ga5e5cffe93edf4bea0d3214be70d6f77b"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b">tidySetErrorBuffer</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *errbuf)</td></tr>
-<tr class="memitem:gad47c75f3af85e7927e7ac18918ec6363"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#gad47c75f3af85e7927e7ac18918ec6363">tidySetErrorSink</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<p>By default, Tidy will define, create and use instances of input and output handlers for standard C buffered I/O (i.e. FILE* stdin, FILE* stdout and FILE* stderr for content input, content output and diagnostic output, respectively. A FILE* cfgFile input handler will be used for config files. Command line options will just be set directly. </p>
-<hr/><h2>Define Documentation</h2>
-<a class="anchor" id="ga9a078b706ec6f37cce40958f6f68585a"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">#define <a class="el" href="group__IO.html#ga9a078b706ec6f37cce40958f6f68585a">EndOfStream</a>&#160;&#160;&#160;(~0u)</td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>End of input "character" </p>
-
-</div>
-</div>
-<hr/><h2>Typedef Documentation</h2>
-<a class="anchor" id="ga6951f79d4b50288e96a3896ab01393d6"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef int(TIDY_CALL * <a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a>)(void *sourceData)</td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Input Callback: get next byte of input </p>
-
-</div>
-</div>
-<a class="anchor" id="ga298b882c5fc7cc969ef58fb187bdd371"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef void(TIDY_CALL * <a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a>)(void *sourceData, byte bt)</td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Input Callback: unget a byte of input </p>
-
-</div>
-</div>
-<a class="anchor" id="ga9f8e1bb4c4740ffb399ec424594c4972"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef Bool(TIDY_CALL * <a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a>)(void *sourceData)</td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Input Callback: is end of input? </p>
-
-</div>
-</div>
-<a class="anchor" id="ga86fcc3c86bd63b26a559938bc38d34bb"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef TIDY_STRUCT struct <a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a>  <a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>TidyInputSource - Delivers raw bytes of input </p>
-
-</div>
-</div>
-<a class="anchor" id="ga63bcce5aa5f52e4e2e22aedd750b8bbc"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef void(TIDY_CALL * <a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a>)(void *sinkData, byte bt)</td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Output callback: send a byte to output </p>
-
-</div>
-</div>
-<a class="anchor" id="ga6bdd15de48364d2b5dbf2141109d3f98"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef TIDY_STRUCT struct <a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a>  <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>TidyOutputSink - accepts raw bytes of output </p>
-
-</div>
-</div>
-<a class="anchor" id="ga29c5bee28b95924a97ea4fbb81668c5e"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef Bool(TIDY_CALL * <a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a>)(<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyReportLevel lvl, uint line, uint col, ctmbstr mssg)</td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Callback to filter messages by diagnostic level: info, warning, etc. Just set diagnostic output handler to redirect all diagnostics output. Return true to proceed with output, false to cancel. </p>
-
-</div>
-</div>
-<hr/><h2>Function Documentation</h2>
-<a class="anchor" id="gab446af273e331cb0440dd01b6990d2d0"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__IO.html#gab446af273e331cb0440dd01b6990d2d0">tidyInitSource</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *&#160;</td>
-          <td class="paramname"><em>source</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">void *&#160;</td>
-          <td class="paramname"><em>srcData</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a>&#160;</td>
-          <td class="paramname"><em>gbFunc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a>&#160;</td>
-          <td class="paramname"><em>ugbFunc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a>&#160;</td>
-          <td class="paramname"><em>endFunc</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Facilitates user defined source by providing an entry point to marshal pointers-to-functions. Needed by .NET and possibly other language bindings. </p>
-
-</div>
-</div>
-<a class="anchor" id="gadba396ffec9f29b27d73a23264dcfa0b"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">uint TIDY_CALL <a class="el" href="group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b">tidyGetByte</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *&#160;</td>
-          <td class="paramname"><em>source</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Helper: get next byte from input source </p>
-
-</div>
-</div>
-<a class="anchor" id="ga0c8d46de315cabb0ac7d2cf01ca183d7"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7">tidyUngetByte</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *&#160;</td>
-          <td class="paramname"><em>source</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">uint&#160;</td>
-          <td class="paramname"><em>byteValue</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Helper: unget byte back to input source </p>
-
-</div>
-</div>
-<a class="anchor" id="ga399df5ba17614205964a665f7b1726a6"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__IO.html#ga399df5ba17614205964a665f7b1726a6">tidyIsEOF</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *&#160;</td>
-          <td class="paramname"><em>source</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Helper: check if input source at end </p>
-
-</div>
-</div>
-<a class="anchor" id="ga7e93289be3a7253cdf99a96285e6a2d4"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4">tidyInitSink</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *&#160;</td>
-          <td class="paramname"><em>sink</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">void *&#160;</td>
-          <td class="paramname"><em>snkData</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a>&#160;</td>
-          <td class="paramname"><em>pbFunc</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Facilitates user defined sinks by providing an entry point to marshal pointers-to-functions. Needed by .NET and possibly other language bindings. </p>
-
-</div>
-</div>
-<a class="anchor" id="ga2a34772782d7b786e37012fce4cd2425"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void TIDY_CALL <a class="el" href="group__IO.html#ga2a34772782d7b786e37012fce4cd2425">tidyPutByte</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *&#160;</td>
-          <td class="paramname"><em>sink</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">uint&#160;</td>
-          <td class="paramname"><em>byteValue</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Helper: send a byte to output </p>
-
-</div>
-</div>
-<a class="anchor" id="ga51e02523601388bb83c2555b995e68b0"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__IO.html#ga51e02523601388bb83c2555b995e68b0">tidySetReportFilter</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a>&#160;</td>
-          <td class="paramname"><em>filtCallback</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Give Tidy a filter callback to use </p>
-
-</div>
-</div>
-<a class="anchor" id="ga669758031bbd5d4ba957b19e77229c8b"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">FILE* TIDY_CALL <a class="el" href="group__IO.html#ga669758031bbd5d4ba957b19e77229c8b">tidySetErrorFile</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>errfilnam</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Set error sink to named file </p>
-
-</div>
-</div>
-<a class="anchor" id="ga5e5cffe93edf4bea0d3214be70d6f77b"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b">tidySetErrorBuffer</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>errbuf</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Set error sink to given buffer </p>
-
-</div>
-</div>
-<a class="anchor" id="gad47c75f3af85e7927e7ac18918ec6363"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__IO.html#gad47c75f3af85e7927e7ac18918ec6363">tidySetErrorSink</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *&#160;</td>
-          <td class="paramname"><em>sink</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Set error sink to given generic sink </p>
-
-</div>
-</div>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__IO.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__IO.js
deleted file mode 100644
index f4c18bb..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__IO.js
+++ /dev/null
@@ -1,23 +0,0 @@
-var group__IO =
-[
-    [ "_TidyInputSource", "struct__TidyInputSource.html", null ],
-    [ "_TidyOutputSink", "struct__TidyOutputSink.html", null ],
-    [ "EndOfStream", "group__IO.html#ga9a078b706ec6f37cce40958f6f68585a", null ],
-    [ "TidyGetByteFunc", "group__IO.html#ga6951f79d4b50288e96a3896ab01393d6", null ],
-    [ "TidyUngetByteFunc", "group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371", null ],
-    [ "TidyEOFFunc", "group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972", null ],
-    [ "TidyInputSource", "group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb", null ],
-    [ "TidyPutByteFunc", "group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc", null ],
-    [ "TidyOutputSink", "group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98", null ],
-    [ "TidyReportFilter", "group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e", null ],
-    [ "tidyInitSource", "group__IO.html#gab446af273e331cb0440dd01b6990d2d0", null ],
-    [ "tidyGetByte", "group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b", null ],
-    [ "tidyUngetByte", "group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7", null ],
-    [ "tidyIsEOF", "group__IO.html#ga399df5ba17614205964a665f7b1726a6", null ],
-    [ "tidyInitSink", "group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4", null ],
-    [ "tidyPutByte", "group__IO.html#ga2a34772782d7b786e37012fce4cd2425", null ],
-    [ "tidySetReportFilter", "group__IO.html#ga51e02523601388bb83c2555b995e68b0", null ],
-    [ "tidySetErrorFile", "group__IO.html#ga669758031bbd5d4ba957b19e77229c8b", null ],
-    [ "tidySetErrorBuffer", "group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b", null ],
-    [ "tidySetErrorSink", "group__IO.html#gad47c75f3af85e7927e7ac18918ec6363", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Memory.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Memory.html
deleted file mode 100644
index fa596e2..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Memory.html
+++ /dev/null
@@ -1,270 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Memory Allocation</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__Memory.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#nested-classes">Data Structures</a> &#124;
-<a href="#typedef-members">Typedefs</a> &#124;
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Memory Allocation</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="nested-classes"></a>
-Data Structures</h2></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a></td></tr>
-<tr><td colspan="2"><h2><a name="typedef-members"></a>
-Typedefs</h2></td></tr>
-<tr class="memitem:ga3fe8c5ac7d658618c732565776940ed8"><td class="memItemLeft" align="right" valign="top">typedef struct <a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8">TidyAllocatorVtbl</a></td></tr>
-<tr class="memitem:ga78e96524a88db0c09e766795265863da"><td class="memItemLeft" align="right" valign="top">typedef struct <a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a></td></tr>
-<tr class="memitem:ga3bd3cc4d0c837a4cd10ab472ba671430"><td class="memItemLeft" align="right" valign="top">typedef void *(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a> )(size_t len)</td></tr>
-<tr class="memitem:ga9d9a5625817932dbbb39dd33de678edd"><td class="memItemLeft" align="right" valign="top">typedef void *(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a> )(void *buf, size_t len)</td></tr>
-<tr class="memitem:ga27931c443e424937ba47f0d4795aa35f"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a> )(void *buf)</td></tr>
-<tr class="memitem:ga0770be41d9935a3e2933ba0be3c7725c"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a> )(ctmbstr mssg)</td></tr>
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:gab55079374527525e3374ebc4d2a1e625"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#gab55079374527525e3374ebc4d2a1e625">tidySetMallocCall</a> (<a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a> fmalloc)</td></tr>
-<tr class="memitem:ga446b538da3ee3f2e5a3827b877665b30"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30">tidySetReallocCall</a> (<a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a> frealloc)</td></tr>
-<tr class="memitem:ga70e707b7df86effb5727b0b9ff64eed7"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7">tidySetFreeCall</a> (<a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a> ffree)</td></tr>
-<tr class="memitem:gab12cc0435bacec1a8c725e02357acc00"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#gab12cc0435bacec1a8c725e02357acc00">tidySetPanicCall</a> (<a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a> fpanic)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<p>Tidy uses a user provided allocator for all memory allocations. If this allocator is not provided, then a default allocator is used which simply wraps standard C malloc/free calls. These wrappers call the panic function upon any failure. The default panic function prints an out of memory message to stderr, and calls exit(2).</p>
-<p>For applications in which it is unacceptable to abort in the case of memory allocation, then the panic function can be replaced with one which longjmps() out of the tidy code. For this to clean up completely, you should be careful not to use any tidy methods that open files as these will not be closed before panic() is called.</p>
-<p>TODO: associate file handles with tidyDoc and ensure that tidyDocRelease() can close them all.</p>
-<p>Calling the withAllocator() family ( tidyCreateWithAllocator, tidyBufInitWithAllocator, tidyBufAllocWithAllocator) allow settings custom allocators).</p>
-<p>All parts of the document use the same allocator. Calls that require a user provided buffer can optionally use a different allocator.</p>
-<p>For reference in designing a plug-in allocator, most allocations made by tidy are less than 100 bytes, corresponding to attribute names/values, etc.</p>
-<p>There is also an additional class of much larger allocations which are where most of the data from the lexer is stored. (It is not currently possible to use a separate allocator for the lexer, this would be a useful extension).</p>
-<p>In general, approximately 1/3rd of the memory used by tidy is freed during the parse, so if memory usage is an issue then an allocator that can reuse this memory is a good idea. </p>
-<hr/><h2>Typedef Documentation</h2>
-<a class="anchor" id="ga3fe8c5ac7d658618c732565776940ed8"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef struct <a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a> <a class="el" href="group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8">TidyAllocatorVtbl</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>The allocators function table </p>
-
-</div>
-</div>
-<a class="anchor" id="ga78e96524a88db0c09e766795265863da"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef struct <a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a> <a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>The allocator </p>
-
-</div>
-</div>
-<a class="anchor" id="ga3bd3cc4d0c837a4cd10ab472ba671430"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef void*(TIDY_CALL * <a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a>)(size_t len)</td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Callback for "malloc" replacement </p>
-
-</div>
-</div>
-<a class="anchor" id="ga9d9a5625817932dbbb39dd33de678edd"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef void*(TIDY_CALL * <a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a>)(void *buf, size_t len)</td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Callback for "realloc" replacement </p>
-
-</div>
-</div>
-<a class="anchor" id="ga27931c443e424937ba47f0d4795aa35f"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef void(TIDY_CALL * <a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a>)(void *buf)</td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Callback for "free" replacement </p>
-
-</div>
-</div>
-<a class="anchor" id="ga0770be41d9935a3e2933ba0be3c7725c"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">typedef void(TIDY_CALL * <a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a>)(ctmbstr mssg)</td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Callback for "out of memory" panic state </p>
-
-</div>
-</div>
-<hr/><h2>Function Documentation</h2>
-<a class="anchor" id="gab55079374527525e3374ebc4d2a1e625"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Memory.html#gab55079374527525e3374ebc4d2a1e625">tidySetMallocCall</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a>&#160;</td>
-          <td class="paramname"><em>fmalloc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Give Tidy a malloc() replacement </p>
-
-</div>
-</div>
-<a class="anchor" id="ga446b538da3ee3f2e5a3827b877665b30"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30">tidySetReallocCall</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a>&#160;</td>
-          <td class="paramname"><em>frealloc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Give Tidy a realloc() replacement </p>
-
-</div>
-</div>
-<a class="anchor" id="ga70e707b7df86effb5727b0b9ff64eed7"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7">tidySetFreeCall</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a>&#160;</td>
-          <td class="paramname"><em>ffree</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Give Tidy a free() replacement </p>
-
-</div>
-</div>
-<a class="anchor" id="gab12cc0435bacec1a8c725e02357acc00"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">Bool TIDY_CALL <a class="el" href="group__Memory.html#gab12cc0435bacec1a8c725e02357acc00">tidySetPanicCall</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a>&#160;</td>
-          <td class="paramname"><em>fpanic</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Give Tidy an "out of memory" handler </p>
-
-</div>
-</div>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Memory.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Memory.js
deleted file mode 100644
index c69f2dd..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Memory.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var group__Memory =
-[
-    [ "_TidyAllocatorVtbl", "struct__TidyAllocatorVtbl.html", null ],
-    [ "_TidyAllocator", "struct__TidyAllocator.html", null ],
-    [ "TidyAllocatorVtbl", "group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8", null ],
-    [ "TidyAllocator", "group__Memory.html#ga78e96524a88db0c09e766795265863da", null ],
-    [ "TidyMalloc", "group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430", null ],
-    [ "TidyRealloc", "group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd", null ],
-    [ "TidyFree", "group__Memory.html#ga27931c443e424937ba47f0d4795aa35f", null ],
-    [ "TidyPanic", "group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c", null ],
-    [ "tidySetMallocCall", "group__Memory.html#gab55079374527525e3374ebc4d2a1e625", null ],
-    [ "tidySetReallocCall", "group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30", null ],
-    [ "tidySetFreeCall", "group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7", null ],
-    [ "tidySetPanicCall", "group__Memory.html#gab12cc0435bacec1a8c725e02357acc00", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeAsk.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeAsk.html
deleted file mode 100644
index a954afd..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeAsk.html
+++ /dev/null
@@ -1,113 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Node Interrogation</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__NodeAsk.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#groups">Modules</a> &#124;
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Node Interrogation</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="groups"></a>
-Modules</h2></td></tr>
-<tr class="memitem:group__NodeIsElementName"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__NodeIsElementName.html">Deprecated node interrogation per TagId</a></td></tr>
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:gaa9786b1ce44061e2811d1ecbcd76d318"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa9786b1ce44061e2811d1ecbcd76d318"></a>
-TidyNodeType TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeGetType</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5ea4ecef06555a58f942b2c500722156"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5ea4ecef06555a58f942b2c500722156"></a>
-ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeGetName</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga446c2a5ed55a75685074585f007b52c5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga446c2a5ed55a75685074585f007b52c5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsText</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga2eb2b4a0ee75c74215de9859467d17f1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga2eb2b4a0ee75c74215de9859467d17f1"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsProp</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga69c929ff5987273560e683e44b2515eb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga69c929ff5987273560e683e44b2515eb"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHeader</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4abc910dd180773665c6e2e4e30ea2d7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4abc910dd180773665c6e2e4e30ea2d7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeHasText</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga174176952045d3a79500451eae0322d6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga174176952045d3a79500451eae0322d6"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeGetText</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:ga775c446f1fd1ffa25eb688af6c56853c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga775c446f1fd1ffa25eb688af6c56853c"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeGetValue</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:ga30307d5b9937c7f0aad1f37d7cf7848c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga30307d5b9937c7f0aad1f37d7cf7848c"></a>
-TidyTagId TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeGetId</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga98658b8c02e0d2000a6c7da5d916ced4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga98658b8c02e0d2000a6c7da5d916ced4"></a>
-uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeLine</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga00fb1f74d89419ad97f345660cd8876f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga00fb1f74d89419ad97f345660cd8876f"></a>
-uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeColumn</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<p>Get information about any givent node. </p>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeAsk.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeAsk.js
deleted file mode 100644
index 17f2168..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeAsk.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var group__NodeAsk =
-[
-    [ "Deprecated node interrogation per TagId", "group__NodeIsElementName.html", "group__NodeIsElementName" ],
-    [ "tidyNodeGetType", "group__NodeAsk.html#gaa9786b1ce44061e2811d1ecbcd76d318", null ],
-    [ "tidyNodeGetName", "group__NodeAsk.html#ga5ea4ecef06555a58f942b2c500722156", null ],
-    [ "tidyNodeIsText", "group__NodeAsk.html#ga446c2a5ed55a75685074585f007b52c5", null ],
-    [ "tidyNodeIsProp", "group__NodeAsk.html#ga2eb2b4a0ee75c74215de9859467d17f1", null ],
-    [ "tidyNodeIsHeader", "group__NodeAsk.html#ga69c929ff5987273560e683e44b2515eb", null ],
-    [ "tidyNodeHasText", "group__NodeAsk.html#ga4abc910dd180773665c6e2e4e30ea2d7", null ],
-    [ "tidyNodeGetText", "group__NodeAsk.html#ga174176952045d3a79500451eae0322d6", null ],
-    [ "tidyNodeGetValue", "group__NodeAsk.html#ga775c446f1fd1ffa25eb688af6c56853c", null ],
-    [ "tidyNodeGetId", "group__NodeAsk.html#ga30307d5b9937c7f0aad1f37d7cf7848c", null ],
-    [ "tidyNodeLine", "group__NodeAsk.html#ga98658b8c02e0d2000a6c7da5d916ced4", null ],
-    [ "tidyNodeColumn", "group__NodeAsk.html#ga00fb1f74d89419ad97f345660cd8876f", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeIsElementName.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeIsElementName.html
deleted file mode 100644
index c689979..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeIsElementName.html
+++ /dev/null
@@ -1,247 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Deprecated node interrogation per TagId</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__NodeIsElementName.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Deprecated node interrogation per TagId</div>  </div>
-<div class="ingroups"><a class="el" href="group__NodeAsk.html">Node Interrogation</a></div></div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:gaf692f1ed40027be3f3cd5d198abc3ad2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf692f1ed40027be3f3cd5d198abc3ad2"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHTML</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga59e3d8737230aaf6aefd38923b2d9938"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga59e3d8737230aaf6aefd38923b2d9938"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHEAD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga41c163de846f0a5f0a06f8e8ba1559cc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga41c163de846f0a5f0a06f8e8ba1559cc"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTITLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga9c09a80c0fbb47c46c48816217058067"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9c09a80c0fbb47c46c48816217058067"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBASE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaeecc06fcf1ead446d89e2da189124a84"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeecc06fcf1ead446d89e2da189124a84"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMETA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gacba5807618c3f9e55cc03ff87de9b7ce"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gacba5807618c3f9e55cc03ff87de9b7ce"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBODY</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae1ea58f48b98e27dc9e4489937f17755"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae1ea58f48b98e27dc9e4489937f17755"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFRAMESET</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gacb9bcd9b662a2089064a3c240062c99f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gacb9bcd9b662a2089064a3c240062c99f"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFRAME</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga816d167ba4cb8b3787967ec3dbde5ec5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga816d167ba4cb8b3787967ec3dbde5ec5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsIFRAME</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8320b595afb1e7e167b7c1a79b0dc366"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8320b595afb1e7e167b7c1a79b0dc366"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsNOFRAMES</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga51ace62a3ec1c51035cabf4a2605d898"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga51ace62a3ec1c51035cabf4a2605d898"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac28ca322aabade5ec3a7a7601c72ee16"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac28ca322aabade5ec3a7a7601c72ee16"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH1</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaa6f4c167e5934e14fd2bc016cbcb5abd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa6f4c167e5934e14fd2bc016cbcb5abd"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH2</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga0603085c30d94973f5d9d5b5de2ff200"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0603085c30d94973f5d9d5b5de2ff200"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsPRE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafc3aadf1d5eaab9c59ce47bfc2b6ceae"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafc3aadf1d5eaab9c59ce47bfc2b6ceae"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLISTING</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafd77569c4993bcd4ded3b97608248b9e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafd77569c4993bcd4ded3b97608248b9e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gadde0e35eef49567f98c385a736588409"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadde0e35eef49567f98c385a736588409"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsUL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga52d9c5612a982cc71602b5088f415879"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga52d9c5612a982cc71602b5088f415879"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gadb2e0e0fbeac0da447fd96fc75158f54"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadb2e0e0fbeac0da447fd96fc75158f54"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaac81f7e14fa7e59aa4fa8d4aa6d06268"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaac81f7e14fa7e59aa4fa8d4aa6d06268"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDIR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac6269b21e8ad6e21d66bd5addd77eb87"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac6269b21e8ad6e21d66bd5addd77eb87"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLI</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga3a0c0bc0925bd40677da0286d8b27d7b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3a0c0bc0925bd40677da0286d8b27d7b"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8517c2217955d3602426c2bda1da6402"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8517c2217955d3602426c2bda1da6402"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gad88dbaf421328ad0026a0f6c5b471a28"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad88dbaf421328ad0026a0f6c5b471a28"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTABLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga2493322b8c7ec6e7001e928bd71fc1b6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga2493322b8c7ec6e7001e928bd71fc1b6"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCAPTION</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7de8f8de16a810da710ff0981a08d43d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7de8f8de16a810da710ff0981a08d43d"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae4f6572db3d4bce835660e21f18b1983"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae4f6572db3d4bce835660e21f18b1983"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTH</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6d2aafe8789a16ab429c5fdf9deb0da7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6d2aafe8789a16ab429c5fdf9deb0da7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4638800893b9ae5a70cdb74c06c6a79c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4638800893b9ae5a70cdb74c06c6a79c"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCOL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga385a0cd988f64c8a4bd67d9b198d2ea7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga385a0cd988f64c8a4bd67d9b198d2ea7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCOLGROUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaf0950a14b5b1ab4789b9b0a5bac0b18e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf0950a14b5b1ab4789b9b0a5bac0b18e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae73ab4feaf47cba0fe76ad6ceaaf45a5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae73ab4feaf47cba0fe76ad6ceaaf45a5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac798ba0aa726aee5cbcf3262624c0458"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac798ba0aa726aee5cbcf3262624c0458"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga95af7c22df42cdc104858b6ef545c356"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga95af7c22df42cdc104858b6ef545c356"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsB</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafe4ee40e682872ae83dfce0dd4a8d0c3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafe4ee40e682872ae83dfce0dd4a8d0c3"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsI</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga15ea33b5dc08b426720d0c57cbecaced"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga15ea33b5dc08b426720d0c57cbecaced"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSTRONG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga445cccfc6c19f8f3b73ebd06a361bd48"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga445cccfc6c19f8f3b73ebd06a361bd48"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsEM</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga22e67a4b6c14214d35ad295a82509842"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga22e67a4b6c14214d35ad295a82509842"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBIG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga48af9e160f669f778de274336096e2eb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga48af9e160f669f778de274336096e2eb"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSMALL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga48067f28cfe217c9fc060650d0e3aca4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga48067f28cfe217c9fc060650d0e3aca4"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsPARAM</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7f8b52642e3255b0480f48075dab8d6f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7f8b52642e3255b0480f48075dab8d6f"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOPTION</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafe0455c4b138bffa99a913b8f3a9104f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafe0455c4b138bffa99a913b8f3a9104f"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOPTGROUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafa4f741c56492e05bd351af1f0111f4e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafa4f741c56492e05bd351af1f0111f4e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsIMG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga99beb2cb511391d1aca45fb85cedf27a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga99beb2cb511391d1aca45fb85cedf27a"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMAP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac266b333729c7430b5c73c61769f2786"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac266b333729c7430b5c73c61769f2786"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsAREA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6f0a957c81b4013ced6cbc4e7d8db2af"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6f0a957c81b4013ced6cbc4e7d8db2af"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsNOBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga89ed82add2b5524bb5cf08f382eb5116"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga89ed82add2b5524bb5cf08f382eb5116"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsWBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga53c827624431293012ca7cfde97c937e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga53c827624431293012ca7cfde97c937e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFONT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaf238482802b2fb6e9e0b5b041d3b7611"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf238482802b2fb6e9e0b5b041d3b7611"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLAYER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga445b2216e08962ebc2cf2013dd911969"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga445b2216e08962ebc2cf2013dd911969"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSPACER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6195cdbb5617b5240519b5a993f69592"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6195cdbb5617b5240519b5a993f69592"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCENTER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga3e7e0649d24765c37404b64837dde32b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3e7e0649d24765c37404b64837dde32b"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSTYLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga86627d1d0706847ff3087e196819706f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga86627d1d0706847ff3087e196819706f"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSCRIPT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga19d096d6eff710ef6c7a154ba8e4c71c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga19d096d6eff710ef6c7a154ba8e4c71c"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsNOSCRIPT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga507a029656b570eac822ea40122571d8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga507a029656b570eac822ea40122571d8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFORM</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8bd6a34ea2f61d687d24f12a49c51128"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8bd6a34ea2f61d687d24f12a49c51128"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTEXTAREA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gabbbd873b72e446a8668c7c69582404e2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gabbbd873b72e446a8668c7c69582404e2"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBLOCKQUOTE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gadfa5afb9f719c21667e98df09f043dd6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadfa5afb9f719c21667e98df09f043dd6"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsAPPLET</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaf8c3d48a3d23f49a9d6e373ae18456c4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf8c3d48a3d23f49a9d6e373ae18456c4"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOBJECT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae423fbaf8bb2b2d7faf427ebb853159e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae423fbaf8bb2b2d7faf427ebb853159e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDIV</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga86ade270327fb3afa6d8f881fda3089e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga86ade270327fb3afa6d8f881fda3089e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSPAN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga648890464b129cbceaf749f912f6527e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga648890464b129cbceaf749f912f6527e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsINPUT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6ef21bfc5033fd69c9f94e794d536fdb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6ef21bfc5033fd69c9f94e794d536fdb"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsQ</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7e4e65b0819e33ffdc38183f5dbf2785"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7e4e65b0819e33ffdc38183f5dbf2785"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLABEL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4d49e513f271e3c1de40a2ca5bb507a5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4d49e513f271e3c1de40a2ca5bb507a5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH3</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8efaa17098b9b4c7be3f4c8a9edd5f37"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8efaa17098b9b4c7be3f4c8a9edd5f37"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH4</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaa929252184f6d11fde69ee76f212822a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa929252184f6d11fde69ee76f212822a"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH5</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4b3bad82463198c3893c901aa20af219"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4b3bad82463198c3893c901aa20af219"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH6</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5ba4012b1bf4eb54b5042832f9a138e0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5ba4012b1bf4eb54b5042832f9a138e0"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsADDRESS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga25aba7bafb8f63d71fb54c143d053fd1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga25aba7bafb8f63d71fb54c143d053fd1"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsXMP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaea4d09d1203e94c3010c56672ea6d711"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaea4d09d1203e94c3010c56672ea6d711"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSELECT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac03b2963ecda6cc08653294370baf8d8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac03b2963ecda6cc08653294370baf8d8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga16bca9ae0e87d001ed4242a83618f404"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga16bca9ae0e87d001ed4242a83618f404"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMARQUEE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gab9e88a5cd07c8645db3293062fbb2a51"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab9e88a5cd07c8645db3293062fbb2a51"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsEMBED</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga334efee28622bff3384c9eda4bb4eec5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga334efee28622bff3384c9eda4bb4eec5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBASEFONT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6c18dbdbb887968b79753ae455f2c90a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6c18dbdbb887968b79753ae455f2c90a"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsISINDEX</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac62bc0004bfc655a7a21b6b98ddc5e6c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac62bc0004bfc655a7a21b6b98ddc5e6c"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga9d56a0c1da9fdf018cb6db4398260295"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9d56a0c1da9fdf018cb6db4398260295"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSTRIKE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gab28ee4ca158cb9122022719fdc08ec08"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab28ee4ca158cb9122022719fdc08ec08"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsU</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga41c2551e386adc53cd9ab0e00f707558"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga41c2551e386adc53cd9ab0e00f707558"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMENU</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000001">Deprecated:</a></b></dt><dd>The functions tidyNodeIs{ElementName} are deprecated and should be replaced by tidyNodeGetId.</dd></dl>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeIsElementName.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeIsElementName.js
deleted file mode 100644
index 202c4f3..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__NodeIsElementName.js
+++ /dev/null
@@ -1,83 +0,0 @@
-var group__NodeIsElementName =
-[
-    [ "tidyNodeIsHTML", "group__NodeIsElementName.html#gaf692f1ed40027be3f3cd5d198abc3ad2", null ],
-    [ "tidyNodeIsHEAD", "group__NodeIsElementName.html#ga59e3d8737230aaf6aefd38923b2d9938", null ],
-    [ "tidyNodeIsTITLE", "group__NodeIsElementName.html#ga41c163de846f0a5f0a06f8e8ba1559cc", null ],
-    [ "tidyNodeIsBASE", "group__NodeIsElementName.html#ga9c09a80c0fbb47c46c48816217058067", null ],
-    [ "tidyNodeIsMETA", "group__NodeIsElementName.html#gaeecc06fcf1ead446d89e2da189124a84", null ],
-    [ "tidyNodeIsBODY", "group__NodeIsElementName.html#gacba5807618c3f9e55cc03ff87de9b7ce", null ],
-    [ "tidyNodeIsFRAMESET", "group__NodeIsElementName.html#gae1ea58f48b98e27dc9e4489937f17755", null ],
-    [ "tidyNodeIsFRAME", "group__NodeIsElementName.html#gacb9bcd9b662a2089064a3c240062c99f", null ],
-    [ "tidyNodeIsIFRAME", "group__NodeIsElementName.html#ga816d167ba4cb8b3787967ec3dbde5ec5", null ],
-    [ "tidyNodeIsNOFRAMES", "group__NodeIsElementName.html#ga8320b595afb1e7e167b7c1a79b0dc366", null ],
-    [ "tidyNodeIsHR", "group__NodeIsElementName.html#ga51ace62a3ec1c51035cabf4a2605d898", null ],
-    [ "tidyNodeIsH1", "group__NodeIsElementName.html#gac28ca322aabade5ec3a7a7601c72ee16", null ],
-    [ "tidyNodeIsH2", "group__NodeIsElementName.html#gaa6f4c167e5934e14fd2bc016cbcb5abd", null ],
-    [ "tidyNodeIsPRE", "group__NodeIsElementName.html#ga0603085c30d94973f5d9d5b5de2ff200", null ],
-    [ "tidyNodeIsLISTING", "group__NodeIsElementName.html#gafc3aadf1d5eaab9c59ce47bfc2b6ceae", null ],
-    [ "tidyNodeIsP", "group__NodeIsElementName.html#gafd77569c4993bcd4ded3b97608248b9e", null ],
-    [ "tidyNodeIsUL", "group__NodeIsElementName.html#gadde0e35eef49567f98c385a736588409", null ],
-    [ "tidyNodeIsOL", "group__NodeIsElementName.html#ga52d9c5612a982cc71602b5088f415879", null ],
-    [ "tidyNodeIsDL", "group__NodeIsElementName.html#gadb2e0e0fbeac0da447fd96fc75158f54", null ],
-    [ "tidyNodeIsDIR", "group__NodeIsElementName.html#gaac81f7e14fa7e59aa4fa8d4aa6d06268", null ],
-    [ "tidyNodeIsLI", "group__NodeIsElementName.html#gac6269b21e8ad6e21d66bd5addd77eb87", null ],
-    [ "tidyNodeIsDT", "group__NodeIsElementName.html#ga3a0c0bc0925bd40677da0286d8b27d7b", null ],
-    [ "tidyNodeIsDD", "group__NodeIsElementName.html#ga8517c2217955d3602426c2bda1da6402", null ],
-    [ "tidyNodeIsTABLE", "group__NodeIsElementName.html#gad88dbaf421328ad0026a0f6c5b471a28", null ],
-    [ "tidyNodeIsCAPTION", "group__NodeIsElementName.html#ga2493322b8c7ec6e7001e928bd71fc1b6", null ],
-    [ "tidyNodeIsTD", "group__NodeIsElementName.html#ga7de8f8de16a810da710ff0981a08d43d", null ],
-    [ "tidyNodeIsTH", "group__NodeIsElementName.html#gae4f6572db3d4bce835660e21f18b1983", null ],
-    [ "tidyNodeIsTR", "group__NodeIsElementName.html#ga6d2aafe8789a16ab429c5fdf9deb0da7", null ],
-    [ "tidyNodeIsCOL", "group__NodeIsElementName.html#ga4638800893b9ae5a70cdb74c06c6a79c", null ],
-    [ "tidyNodeIsCOLGROUP", "group__NodeIsElementName.html#ga385a0cd988f64c8a4bd67d9b198d2ea7", null ],
-    [ "tidyNodeIsBR", "group__NodeIsElementName.html#gaf0950a14b5b1ab4789b9b0a5bac0b18e", null ],
-    [ "tidyNodeIsA", "group__NodeIsElementName.html#gae73ab4feaf47cba0fe76ad6ceaaf45a5", null ],
-    [ "tidyNodeIsLINK", "group__NodeIsElementName.html#gac798ba0aa726aee5cbcf3262624c0458", null ],
-    [ "tidyNodeIsB", "group__NodeIsElementName.html#ga95af7c22df42cdc104858b6ef545c356", null ],
-    [ "tidyNodeIsI", "group__NodeIsElementName.html#gafe4ee40e682872ae83dfce0dd4a8d0c3", null ],
-    [ "tidyNodeIsSTRONG", "group__NodeIsElementName.html#ga15ea33b5dc08b426720d0c57cbecaced", null ],
-    [ "tidyNodeIsEM", "group__NodeIsElementName.html#ga445cccfc6c19f8f3b73ebd06a361bd48", null ],
-    [ "tidyNodeIsBIG", "group__NodeIsElementName.html#ga22e67a4b6c14214d35ad295a82509842", null ],
-    [ "tidyNodeIsSMALL", "group__NodeIsElementName.html#ga48af9e160f669f778de274336096e2eb", null ],
-    [ "tidyNodeIsPARAM", "group__NodeIsElementName.html#ga48067f28cfe217c9fc060650d0e3aca4", null ],
-    [ "tidyNodeIsOPTION", "group__NodeIsElementName.html#ga7f8b52642e3255b0480f48075dab8d6f", null ],
-    [ "tidyNodeIsOPTGROUP", "group__NodeIsElementName.html#gafe0455c4b138bffa99a913b8f3a9104f", null ],
-    [ "tidyNodeIsIMG", "group__NodeIsElementName.html#gafa4f741c56492e05bd351af1f0111f4e", null ],
-    [ "tidyNodeIsMAP", "group__NodeIsElementName.html#ga99beb2cb511391d1aca45fb85cedf27a", null ],
-    [ "tidyNodeIsAREA", "group__NodeIsElementName.html#gac266b333729c7430b5c73c61769f2786", null ],
-    [ "tidyNodeIsNOBR", "group__NodeIsElementName.html#ga6f0a957c81b4013ced6cbc4e7d8db2af", null ],
-    [ "tidyNodeIsWBR", "group__NodeIsElementName.html#ga89ed82add2b5524bb5cf08f382eb5116", null ],
-    [ "tidyNodeIsFONT", "group__NodeIsElementName.html#ga53c827624431293012ca7cfde97c937e", null ],
-    [ "tidyNodeIsLAYER", "group__NodeIsElementName.html#gaf238482802b2fb6e9e0b5b041d3b7611", null ],
-    [ "tidyNodeIsSPACER", "group__NodeIsElementName.html#ga445b2216e08962ebc2cf2013dd911969", null ],
-    [ "tidyNodeIsCENTER", "group__NodeIsElementName.html#ga6195cdbb5617b5240519b5a993f69592", null ],
-    [ "tidyNodeIsSTYLE", "group__NodeIsElementName.html#ga3e7e0649d24765c37404b64837dde32b", null ],
-    [ "tidyNodeIsSCRIPT", "group__NodeIsElementName.html#ga86627d1d0706847ff3087e196819706f", null ],
-    [ "tidyNodeIsNOSCRIPT", "group__NodeIsElementName.html#ga19d096d6eff710ef6c7a154ba8e4c71c", null ],
-    [ "tidyNodeIsFORM", "group__NodeIsElementName.html#ga507a029656b570eac822ea40122571d8", null ],
-    [ "tidyNodeIsTEXTAREA", "group__NodeIsElementName.html#ga8bd6a34ea2f61d687d24f12a49c51128", null ],
-    [ "tidyNodeIsBLOCKQUOTE", "group__NodeIsElementName.html#gabbbd873b72e446a8668c7c69582404e2", null ],
-    [ "tidyNodeIsAPPLET", "group__NodeIsElementName.html#gadfa5afb9f719c21667e98df09f043dd6", null ],
-    [ "tidyNodeIsOBJECT", "group__NodeIsElementName.html#gaf8c3d48a3d23f49a9d6e373ae18456c4", null ],
-    [ "tidyNodeIsDIV", "group__NodeIsElementName.html#gae423fbaf8bb2b2d7faf427ebb853159e", null ],
-    [ "tidyNodeIsSPAN", "group__NodeIsElementName.html#ga86ade270327fb3afa6d8f881fda3089e", null ],
-    [ "tidyNodeIsINPUT", "group__NodeIsElementName.html#ga648890464b129cbceaf749f912f6527e", null ],
-    [ "tidyNodeIsQ", "group__NodeIsElementName.html#ga6ef21bfc5033fd69c9f94e794d536fdb", null ],
-    [ "tidyNodeIsLABEL", "group__NodeIsElementName.html#ga7e4e65b0819e33ffdc38183f5dbf2785", null ],
-    [ "tidyNodeIsH3", "group__NodeIsElementName.html#ga4d49e513f271e3c1de40a2ca5bb507a5", null ],
-    [ "tidyNodeIsH4", "group__NodeIsElementName.html#ga8efaa17098b9b4c7be3f4c8a9edd5f37", null ],
-    [ "tidyNodeIsH5", "group__NodeIsElementName.html#gaa929252184f6d11fde69ee76f212822a", null ],
-    [ "tidyNodeIsH6", "group__NodeIsElementName.html#ga4b3bad82463198c3893c901aa20af219", null ],
-    [ "tidyNodeIsADDRESS", "group__NodeIsElementName.html#ga5ba4012b1bf4eb54b5042832f9a138e0", null ],
-    [ "tidyNodeIsXMP", "group__NodeIsElementName.html#ga25aba7bafb8f63d71fb54c143d053fd1", null ],
-    [ "tidyNodeIsSELECT", "group__NodeIsElementName.html#gaea4d09d1203e94c3010c56672ea6d711", null ],
-    [ "tidyNodeIsBLINK", "group__NodeIsElementName.html#gac03b2963ecda6cc08653294370baf8d8", null ],
-    [ "tidyNodeIsMARQUEE", "group__NodeIsElementName.html#ga16bca9ae0e87d001ed4242a83618f404", null ],
-    [ "tidyNodeIsEMBED", "group__NodeIsElementName.html#gab9e88a5cd07c8645db3293062fbb2a51", null ],
-    [ "tidyNodeIsBASEFONT", "group__NodeIsElementName.html#ga334efee28622bff3384c9eda4bb4eec5", null ],
-    [ "tidyNodeIsISINDEX", "group__NodeIsElementName.html#ga6c18dbdbb887968b79753ae455f2c90a", null ],
-    [ "tidyNodeIsS", "group__NodeIsElementName.html#gac62bc0004bfc655a7a21b6b98ddc5e6c", null ],
-    [ "tidyNodeIsSTRIKE", "group__NodeIsElementName.html#ga9d56a0c1da9fdf018cb6db4398260295", null ],
-    [ "tidyNodeIsU", "group__NodeIsElementName.html#gab28ee4ca158cb9122022719fdc08ec08", null ],
-    [ "tidyNodeIsMENU", "group__NodeIsElementName.html#ga41c2551e386adc53cd9ab0e00f707558", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Opaque.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Opaque.html
deleted file mode 100644
index 48972ad..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Opaque.html
+++ /dev/null
@@ -1,102 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Opaque Types</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__Opaque.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#nested-classes">Data Structures</a> &#124;
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Opaque Types</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="nested-classes"></a>
-Data Structures</h2></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structTidyDoc.html">TidyDoc</a></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structTidyOption.html">TidyOption</a></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structTidyNode.html">TidyNode</a></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structTidyAttr.html">TidyAttr</a></td></tr>
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:ga1b209c260854e89f73101c18fe835516"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1b209c260854e89f73101c18fe835516"></a>
-&#160;</td><td class="memItemRight" valign="bottom"><b>opaque_type</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a>)</td></tr>
-<tr class="memitem:gafdaa7208b82ae763fbccb646035f9391"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafdaa7208b82ae763fbccb646035f9391"></a>
-&#160;</td><td class="memItemRight" valign="bottom"><b>opaque_type</b> (<a class="el" href="structTidyOption.html">TidyOption</a>)</td></tr>
-<tr class="memitem:gaa8d1f990e71bf7d6bc1b17974b7788a4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa8d1f990e71bf7d6bc1b17974b7788a4"></a>
-&#160;</td><td class="memItemRight" valign="bottom"><b>opaque_type</b> (<a class="el" href="structTidyNode.html">TidyNode</a>)</td></tr>
-<tr class="memitem:ga236c416d715827e6db5691ce66415c2f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga236c416d715827e6db5691ce66415c2f"></a>
-&#160;</td><td class="memItemRight" valign="bottom"><b>opaque_type</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a>)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<p>Cast to implementation types within lib. Reduces inter-dependencies/conflicts w/ application code. </p>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Opaque.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Opaque.js
deleted file mode 100644
index a587a59..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Opaque.js
+++ /dev/null
@@ -1,11 +0,0 @@
-var group__Opaque =
-[
-    [ "TidyDoc", "structTidyDoc.html", null ],
-    [ "TidyOption", "structTidyOption.html", null ],
-    [ "TidyNode", "structTidyNode.html", null ],
-    [ "TidyAttr", "structTidyAttr.html", null ],
-    [ "opaque_type", "group__Opaque.html#ga1b209c260854e89f73101c18fe835516", null ],
-    [ "opaque_type", "group__Opaque.html#gafdaa7208b82ae763fbccb646035f9391", null ],
-    [ "opaque_type", "group__Opaque.html#gaa8d1f990e71bf7d6bc1b17974b7788a4", null ],
-    [ "opaque_type", "group__Opaque.html#ga236c416d715827e6db5691ce66415c2f", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Parse.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Parse.html
deleted file mode 100644
index d2b815e..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Parse.html
+++ /dev/null
@@ -1,223 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Document Parse</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__Parse.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Document Parse</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:ga5ec263f2e430dd9c9e10437f067b2a28"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Parse.html#ga5ec263f2e430dd9c9e10437f067b2a28">tidyParseFile</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr filename)</td></tr>
-<tr class="memitem:ga96b41ff6e6a7f9d0b9b0e901e33ad31d"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Parse.html#ga96b41ff6e6a7f9d0b9b0e901e33ad31d">tidyParseStdin</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga50c02fa244dcd120ae339719c2132ff9"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Parse.html#ga50c02fa244dcd120ae339719c2132ff9">tidyParseString</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr content)</td></tr>
-<tr class="memitem:gaa28ce34c95750f150205843885317851"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Parse.html#gaa28ce34c95750f150205843885317851">tidyParseBuffer</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:gaa65dad2a4ca5fa97d267ddefe1180e0e"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Parse.html#gaa65dad2a4ca5fa97d267ddefe1180e0e">tidyParseSource</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<p>Parse markup from a given input source. String and filename functions added for convenience. HTML/XHTML version determined from input. </p>
-<hr/><h2>Function Documentation</h2>
-<a class="anchor" id="ga5ec263f2e430dd9c9e10437f067b2a28"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Parse.html#ga5ec263f2e430dd9c9e10437f067b2a28">tidyParseFile</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>filename</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Parse markup in named file </p>
-
-</div>
-</div>
-<a class="anchor" id="ga96b41ff6e6a7f9d0b9b0e901e33ad31d"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Parse.html#ga96b41ff6e6a7f9d0b9b0e901e33ad31d">tidyParseStdin</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Parse markup from the standard input </p>
-
-</div>
-</div>
-<a class="anchor" id="ga50c02fa244dcd120ae339719c2132ff9"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Parse.html#ga50c02fa244dcd120ae339719c2132ff9">tidyParseString</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>content</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Parse markup in given string </p>
-
-</div>
-</div>
-<a class="anchor" id="gaa28ce34c95750f150205843885317851"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Parse.html#gaa28ce34c95750f150205843885317851">tidyParseBuffer</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Parse markup in given buffer </p>
-
-</div>
-</div>
-<a class="anchor" id="gaa65dad2a4ca5fa97d267ddefe1180e0e"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Parse.html#gaa65dad2a4ca5fa97d267ddefe1180e0e">tidyParseSource</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *&#160;</td>
-          <td class="paramname"><em>source</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Parse markup in given generic input source </p>
-
-</div>
-</div>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Parse.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Parse.js
deleted file mode 100644
index 107ff42..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Parse.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var group__Parse =
-[
-    [ "tidyParseFile", "group__Parse.html#ga5ec263f2e430dd9c9e10437f067b2a28", null ],
-    [ "tidyParseStdin", "group__Parse.html#ga96b41ff6e6a7f9d0b9b0e901e33ad31d", null ],
-    [ "tidyParseString", "group__Parse.html#ga50c02fa244dcd120ae339719c2132ff9", null ],
-    [ "tidyParseBuffer", "group__Parse.html#gaa28ce34c95750f150205843885317851", null ],
-    [ "tidyParseSource", "group__Parse.html#gaa65dad2a4ca5fa97d267ddefe1180e0e", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Save.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Save.html
deleted file mode 100644
index 52b7657..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Save.html
+++ /dev/null
@@ -1,229 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Document Save Functions</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__Save.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Document Save Functions</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:ga19ee6e2ee0e719a97cff443ebb19ae44"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Save.html#ga19ee6e2ee0e719a97cff443ebb19ae44">tidySaveFile</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr filename)</td></tr>
-<tr class="memitem:ga6638d1800ee63fc6bea19bc2bf582be2"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Save.html#ga6638d1800ee63fc6bea19bc2bf582be2">tidySaveStdout</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga7e8642262c8c4d34cf7cc426647d29f0"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Save.html#ga7e8642262c8c4d34cf7cc426647d29f0">tidySaveBuffer</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:gaf684fefd3e42f459cf0a4ebe937ce12b"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Save.html#gaf684fefd3e42f459cf0a4ebe937ce12b">tidySaveString</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, tmbstr buffer, uint *buflen)</td></tr>
-<tr class="memitem:gaea985b28470453d0218092b137f71e77"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Save.html#gaea985b28470453d0218092b137f71e77">tidySaveSink</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<p>Save currently parsed document to the given output sink. File name and string/buffer functions provided for convenience. </p>
-<hr/><h2>Function Documentation</h2>
-<a class="anchor" id="ga19ee6e2ee0e719a97cff443ebb19ae44"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Save.html#ga19ee6e2ee0e719a97cff443ebb19ae44">tidySaveFile</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">ctmbstr&#160;</td>
-          <td class="paramname"><em>filename</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Save to named file </p>
-
-</div>
-</div>
-<a class="anchor" id="ga6638d1800ee63fc6bea19bc2bf582be2"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Save.html#ga6638d1800ee63fc6bea19bc2bf582be2">tidySaveStdout</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Save to standard output (FILE*) </p>
-
-</div>
-</div>
-<a class="anchor" id="ga7e8642262c8c4d34cf7cc426647d29f0"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Save.html#ga7e8642262c8c4d34cf7cc426647d29f0">tidySaveBuffer</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *&#160;</td>
-          <td class="paramname"><em>buf</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Save to given TidyBuffer object </p>
-
-</div>
-</div>
-<a class="anchor" id="gaf684fefd3e42f459cf0a4ebe937ce12b"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Save.html#gaf684fefd3e42f459cf0a4ebe937ce12b">tidySaveString</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">tmbstr&#160;</td>
-          <td class="paramname"><em>buffer</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">uint *&#160;</td>
-          <td class="paramname"><em>buflen</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Save document to application buffer. If buffer is not big enough, ENOMEM will be returned and the necessary buffer size will be placed in *buflen. </p>
-
-</div>
-</div>
-<a class="anchor" id="gaea985b28470453d0218092b137f71e77"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">int TIDY_CALL <a class="el" href="group__Save.html#gaea985b28470453d0218092b137f71e77">tidySaveSink</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="structTidyDoc.html">TidyDoc</a>&#160;</td>
-          <td class="paramname"><em>tdoc</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *&#160;</td>
-          <td class="paramname"><em>sink</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Save to given generic output sink </p>
-
-</div>
-</div>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Save.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Save.js
deleted file mode 100644
index 91dc711..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Save.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var group__Save =
-[
-    [ "tidySaveFile", "group__Save.html#ga19ee6e2ee0e719a97cff443ebb19ae44", null ],
-    [ "tidySaveStdout", "group__Save.html#ga6638d1800ee63fc6bea19bc2bf582be2", null ],
-    [ "tidySaveBuffer", "group__Save.html#ga7e8642262c8c4d34cf7cc426647d29f0", null ],
-    [ "tidySaveString", "group__Save.html#gaf684fefd3e42f459cf0a4ebe937ce12b", null ],
-    [ "tidySaveSink", "group__Save.html#gaea985b28470453d0218092b137f71e77", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Tree.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Tree.html
deleted file mode 100644
index c1a4e28..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Tree.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Document Tree</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('group__Tree.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">Document Tree</div>  </div>
-</div><!--header-->
-<div class="contents">
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:gac70f893c5cd5805bf76b393ad07c93c6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac70f893c5cd5805bf76b393ad07c93c6"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetRoot</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gae539f5031bd1e039458a7fffb07a2b7a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae539f5031bd1e039458a7fffb07a2b7a"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetHtml</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga8bc403902d8535a6dab3efc29519d970"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8bc403902d8535a6dab3efc29519d970"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetHead</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga860430a9ae7b9d347f0f7eb4204b3046"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga860430a9ae7b9d347f0f7eb4204b3046"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetBody</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga0da0a16a07321623bda6a02a397111ca"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0da0a16a07321623bda6a02a397111ca"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetParent</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga0ef21eb446a56c3874a993b6f3966e73"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0ef21eb446a56c3874a993b6f3966e73"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetChild</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga60f48e1a0981ccfa027e62f73f0b1e7d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga60f48e1a0981ccfa027e62f73f0b1e7d"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetNext</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7a277d67c8143a8dd66d6c4796e5afa2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7a277d67c8143a8dd66d6c4796e5afa2"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetPrev</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7247560b46127ac69780b938d8bca177"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7247560b46127ac69780b938d8bca177"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrFirst</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8af1c83f5c33e767ca40561341089bae"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8af1c83f5c33e767ca40561341089bae"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrNext</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga32dff6f721a553a54cee0324cda15ba7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga32dff6f721a553a54cee0324cda15ba7"></a>
-ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrName</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaeb8f272e8135e744b9b3f006517f1073"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeb8f272e8135e744b9b3f006517f1073"></a>
-ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrValue</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<p>A parsed and, optionally, repaired document is represented by Tidy as a Tree, much like a W3C DOM. This tree may be traversed using these functions. The following snippet gives a basic idea how these functions can be used.</p>
-<pre>
-void dumpNode( TidyNode tnod, int indent )
-{
-  <a class="el" href="structTidyNode.html">TidyNode</a> child;</pre><pre> for ( child = tidyGetChild(tnod); child; child = tidyGetNext(child) )
-  {
-    ctmbstr name;
-    switch ( tidyNodeGetType(child) )
-    {
-    case TidyNode_Root:       name = "Root";                    break;
-    case TidyNode_DocType:    name = "DOCTYPE";                 break;
-    case TidyNode_Comment:    name = "Comment";                 break;
-    case TidyNode_ProcIns:    name = "Processing Instruction";  break;
-    case TidyNode_Text:       name = "Text";                    break;
-    case TidyNode_CDATA:      name = "CDATA";                   break;
-    case TidyNode_Section:    name = "XML Section";             break;
-    case TidyNode_Asp:        name = "ASP";                     break;
-    case TidyNode_Jste:       name = "JSTE";                    break;
-    case TidyNode_Php:        name = "PHP";                     break;
-    case TidyNode_XmlDecl:    name = "XML Declaration";         break;</pre><pre>   case TidyNode_Start:
-    case TidyNode_End:
-    case TidyNode_StartEnd:
-    default:
-      name = tidyNodeGetName( child );
-      break;
-    }
-    assert( name != NULL );
-    printf( "\%*.*sNode: \%s\\n", indent, indent, " ", name );
-    dumpNode( child, indent + 4 );
-  }
-}</pre><pre>void dumpDoc( TidyDoc tdoc )
-{
-  dumpNode( tidyGetRoot(tdoc), 0 );
-}</pre><pre>void dumpBody( TidyDoc tdoc )
-{
-  dumpNode( tidyGetBody(tdoc), 0 );
-}
-</pre> </div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Tree.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Tree.js
deleted file mode 100644
index c5157ec..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/group__Tree.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var group__Tree =
-[
-    [ "tidyGetRoot", "group__Tree.html#gac70f893c5cd5805bf76b393ad07c93c6", null ],
-    [ "tidyGetHtml", "group__Tree.html#gae539f5031bd1e039458a7fffb07a2b7a", null ],
-    [ "tidyGetHead", "group__Tree.html#ga8bc403902d8535a6dab3efc29519d970", null ],
-    [ "tidyGetBody", "group__Tree.html#ga860430a9ae7b9d347f0f7eb4204b3046", null ],
-    [ "tidyGetParent", "group__Tree.html#ga0da0a16a07321623bda6a02a397111ca", null ],
-    [ "tidyGetChild", "group__Tree.html#ga0ef21eb446a56c3874a993b6f3966e73", null ],
-    [ "tidyGetNext", "group__Tree.html#ga60f48e1a0981ccfa027e62f73f0b1e7d", null ],
-    [ "tidyGetPrev", "group__Tree.html#ga7a277d67c8143a8dd66d6c4796e5afa2", null ],
-    [ "tidyAttrFirst", "group__Tree.html#ga7247560b46127ac69780b938d8bca177", null ],
-    [ "tidyAttrNext", "group__Tree.html#ga8af1c83f5c33e767ca40561341089bae", null ],
-    [ "tidyAttrName", "group__Tree.html#ga32dff6f721a553a54cee0324cda15ba7", null ],
-    [ "tidyAttrValue", "group__Tree.html#gaeb8f272e8135e744b9b3f006517f1073", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/index.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/index.html
deleted file mode 100644
index 4d818b5..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/index.html
+++ /dev/null
@@ -1,91 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Main Page</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('index.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">HTML Tidy Documentation</div>  </div>
-</div><!--header-->
-<div class="contents">
-<ul><li><a href="index.html"><span>Main&#160;Page</span></a>
-</li><li><a href="pages.html"><span>Related&#160;Pages</span></a>
-</li><li><a href="modules.html"><span>Modules</span></a>
-</li><li><a href="annotated.html"><span>Data&#160;Structures</span></a>
-<ul><li><a href="annotated.html"><span>Data&#160;Structures</span></a>
-</li><li><a href="functions.html"><span>Data&#160;Fields</span></a>
-</li></ul>
-</li><li><a href="files.html"><span>Files</span></a>
-<ul><li><a href="files.html"><span>File&#160;List</span></a>
-</li><li><a href="globals.html"><span>Globals</span></a>
-</li></ul>
-</li></ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/jquery.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/jquery.js
deleted file mode 100644
index bcad7a8..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/jquery.js
+++ /dev/null
@@ -1,111 +0,0 @@
-/*
- * jQuery JavaScript Library v1.3.2
- * http://jquery.com/
- *
- * Copyright (c) 2009 John Resig
- * Dual licensed under the MIT and GPL licenses.
- * http://docs.jquery.com/License
- *
- * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
- * Revision: 6246
- */
-(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){
-var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
-/*
- * Sizzle CSS Selector Engine - v0.9.3
- *  Copyright 2009, The Dojo Foundation
- *  Released under the MIT, BSD, and GPL Licenses.
- *  More information: http://sizzlejs.com/
- */
-(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0)
-{I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function()
-{G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();
-
-/*
- * jQuery hashchange event - v1.3 - 7/21/2010
- * http://benalman.com/projects/jquery-hashchange-plugin/
- * 
- * Copyright (c) 2010 "Cowboy" Ben Alman
- * Dual licensed under the MIT and GPL licenses.
- * http://benalman.com/about/license/
- */
-(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('<iframe tabindex="-1" title="empty"/>').hide().one("load",function(){r||l(a());n()}).attr("src",r||"javascript:0").insertAfter("body")[0].contentWindow;h.onpropertychange=function(){try{if(event.propertyName==="title"){q.document.title=h.title}}catch(s){}}}};j.stop=k;o=function(){return a(q.location.href)};l=function(v,s){var u=q.document,t=$.fn[c].domain;if(v!==s){u.title=h.title;u.open();t&&u.write('<script>document.domain="'+t+'"<\/script>');u.close();q.location.hash=v}}})();return j})()})(jQuery,this);
-/*
- * jQuery UI 1.7.2
- *
- * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT (MIT-LICENSE.txt)
- * and GPL (GPL-LICENSE.txt) licenses.
- *
- * http://docs.jquery.com/UI
- */
-jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.2",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;/* * jQuery UI Resizable 1.7.2
- *
- * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT (MIT-LICENSE.txt)
- * and GPL (GPL-LICENSE.txt) licenses.
- *
- * http://docs.jquery.com/UI/Resizables
- *
- * Depends:
- *	ui.core.js
- */
-(function(c){c.widget("ui.resizable",c.extend({},c.ui.mouse,{_init:function(){var e=this,j=this.options;this.element.addClass("ui-resizable");c.extend(this,{_aspectRatio:!!(j.aspectRatio),aspectRatio:j.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:j.helper||j.ghost||j.animate?j.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){if(/relative/.test(this.element.css("position"))&&c.browser.opera){this.element.css({position:"relative",top:"auto",left:"auto"})}this.element.wrap(c('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=j.handles||(!c(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all"){this.handles="n,e,s,w,se,sw,ne,nw"}var k=this.handles.split(",");this.handles={};for(var f=0;f<k.length;f++){var h=c.trim(k[f]),d="ui-resizable-"+h;var g=c('<div class="ui-resizable-handle '+d+'"></div>');if(/sw|se|ne|nw/.test(h)){g.css({zIndex:++j.zIndex})}if("se"==h){g.addClass("ui-icon ui-icon-gripsmall-diagonal-se")}this.handles[h]=".ui-resizable-"+h;this.element.append(g)}}this._renderAxis=function(p){p=p||this.element;for(var m in this.handles){if(this.handles[m].constructor==String){this.handles[m]=c(this.handles[m],this.element).show()}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var n=c(this.handles[m],this.element),o=0;o=/sw|ne|nw|se|n|s/.test(m)?n.outerHeight():n.outerWidth();var l=["padding",/ne|nw|n/.test(m)?"Top":/se|sw|s/.test(m)?"Bottom":/^e$/.test(m)?"Right":"Left"].join("");p.css(l,o);this._proportionallyResize()}if(!c(this.handles[m]).length){continue}}};this._renderAxis(this.element);this._handles=c(".ui-resizable-handle",this.element).disableSelection();this._handles.mouseover(function(){if(!e.resizing){if(this.className){var i=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)}e.axis=i&&i[1]?i[1]:"se"}});if(j.autoHide){this._handles.hide();c(this.element).addClass("ui-resizable-autohide").hover(function(){c(this).removeClass("ui-resizable-autohide");e._handles.show()},function(){if(!e.resizing){c(this).addClass("ui-resizable-autohide");e._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var d=function(f){c(f).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){d(this.element);var e=this.element;e.parent().append(this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")})).end().remove()}this.originalElement.css("resize",this.originalResizeStyle);d(this.originalElement)},_mouseCapture:function(e){var f=false;for(var d in this.handles){if(c(this.handles[d])[0]==e.target){f=true}}return this.options.disabled||!!f},_mouseStart:function(f){var i=this.options,e=this.element.position(),d=this.element;this.resizing=true;this.documentScroll={top:c(document).scrollTop(),left:c(document).scrollLeft()};if(d.is(".ui-draggable")||(/absolute/).test(d.css("position"))){d.css({position:"absolute",top:e.top,left:e.left})}if(c.browser.opera&&(/relative/).test(d.css("position"))){d.css({position:"relative",top:"auto",left:"auto"})}this._renderProxy();var j=b(this.helper.css("left")),g=b(this.helper.css("top"));if(i.containment){j+=c(i.containment).scrollLeft()||0;g+=c(i.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:j,top:g};this.size=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalSize=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalPosition={left:j,top:g};this.sizeDiff={width:d.outerWidth()-d.width(),height:d.outerHeight()-d.height()};this.originalMousePosition={left:f.pageX,top:f.pageY};this.aspectRatio=(typeof i.aspectRatio=="number")?i.aspectRatio:((this.originalSize.width/this.originalSize.height)||1);var h=c(".ui-resizable-"+this.axis).css("cursor");c("body").css("cursor",h=="auto"?this.axis+"-resize":h);d.addClass("ui-resizable-resizing");this._propagate("start",f);return true},_mouseDrag:function(d){var g=this.helper,f=this.options,l={},p=this,i=this.originalMousePosition,m=this.axis;var q=(d.pageX-i.left)||0,n=(d.pageY-i.top)||0;var h=this._change[m];if(!h){return false}var k=h.apply(this,[d,q,n]),j=c.browser.msie&&c.browser.version<7,e=this.sizeDiff;if(this._aspectRatio||d.shiftKey){k=this._updateRatio(k,d)}k=this._respectSize(k,d);this._propagate("resize",d);g.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});if(!this._helper&&this._proportionallyResizeElements.length){this._proportionallyResize()}this._updateCache(k);this._trigger("resize",d,this.ui());return false},_mouseStop:function(g){this.resizing=false;var h=this.options,l=this;if(this._helper){var f=this._proportionallyResizeElements,d=f.length&&(/textarea/i).test(f[0].nodeName),e=d&&c.ui.hasScroll(f[0],"left")?0:l.sizeDiff.height,j=d?0:l.sizeDiff.width;var m={width:(l.size.width-j),height:(l.size.height-e)},i=(parseInt(l.element.css("left"),10)+(l.position.left-l.originalPosition.left))||null,k=(parseInt(l.element.css("top"),10)+(l.position.top-l.originalPosition.top))||null;if(!h.animate){this.element.css(c.extend(m,{top:k,left:i}))}l.helper.height(l.size.height);l.helper.width(l.size.width);if(this._helper&&!h.animate){this._proportionallyResize()}}c("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",g);if(this._helper){this.helper.remove()}return false},_updateCache:function(d){var e=this.options;this.offset=this.helper.offset();if(a(d.left)){this.position.left=d.left}if(a(d.top)){this.position.top=d.top}if(a(d.height)){this.size.height=d.height}if(a(d.width)){this.size.width=d.width}},_updateRatio:function(g,f){var h=this.options,i=this.position,e=this.size,d=this.axis;if(g.height){g.width=(e.height*this.aspectRatio)}else{if(g.width){g.height=(e.width/this.aspectRatio)}}if(d=="sw"){g.left=i.left+(e.width-g.width);g.top=null}if(d=="nw"){g.top=i.top+(e.height-g.height);g.left=i.left+(e.width-g.width)}return g},_respectSize:function(k,f){var i=this.helper,h=this.options,q=this._aspectRatio||f.shiftKey,p=this.axis,s=a(k.width)&&h.maxWidth&&(h.maxWidth<k.width),l=a(k.height)&&h.maxHeight&&(h.maxHeight<k.height),g=a(k.width)&&h.minWidth&&(h.minWidth>k.width),r=a(k.height)&&h.minHeight&&(h.minHeight>k.height);if(g){k.width=h.minWidth}if(r){k.height=h.minHeight}if(s){k.width=h.maxWidth}if(l){k.height=h.maxHeight}var e=this.originalPosition.left+this.originalSize.width,n=this.position.top+this.size.height;var j=/sw|nw|w/.test(p),d=/nw|ne|n/.test(p);if(g&&j){k.left=e-h.minWidth}if(s&&j){k.left=e-h.maxWidth}if(r&&d){k.top=n-h.minHeight}if(l&&d){k.top=n-h.maxHeight}var m=!k.width&&!k.height;if(m&&!k.left&&k.top){k.top=null}else{if(m&&!k.top&&k.left){k.left=null}}return k},_proportionallyResize:function(){var j=this.options;if(!this._proportionallyResizeElements.length){return}var f=this.helper||this.element;for(var e=0;e<this._proportionallyResizeElements.length;e++){var g=this._proportionallyResizeElements[e];if(!this.borderDif){var d=[g.css("borderTopWidth"),g.css("borderRightWidth"),g.css("borderBottomWidth"),g.css("borderLeftWidth")],h=[g.css("paddingTop"),g.css("paddingRight"),g.css("paddingBottom"),g.css("paddingLeft")];this.borderDif=c.map(d,function(k,m){var l=parseInt(k,10)||0,n=parseInt(h[m],10)||0;return l+n})}if(c.browser.msie&&!(!(c(f).is(":hidden")||c(f).parents(":hidden").length))){continue}g.css({height:(f.height()-this.borderDif[0]-this.borderDif[2])||0,width:(f.width()-this.borderDif[1]-this.borderDif[3])||0})}},_renderProxy:function(){var e=this.element,h=this.options;this.elementOffset=e.offset();if(this._helper){this.helper=this.helper||c('<div style="overflow:hidden;"></div>');var d=c.browser.msie&&c.browser.version<7,f=(d?1:0),g=(d?2:-1);this.helper.addClass(this._helper).css({width:this.element.outerWidth()+g,height:this.element.outerHeight()+g,position:"absolute",left:this.elementOffset.left-f+"px",top:this.elementOffset.top-f+"px",zIndex:++h.zIndex});this.helper.appendTo("body").disableSelection()}else{this.helper=this.element}},_change:{e:function(f,e,d){return{width:this.originalSize.width+e}},w:function(g,e,d){var i=this.options,f=this.originalSize,h=this.originalPosition;return{left:h.left+e,width:f.width-e}},n:function(g,e,d){var i=this.options,f=this.originalSize,h=this.originalPosition;return{top:h.top+d,height:f.height-d}},s:function(f,e,d){return{height:this.originalSize.height+d}},se:function(f,e,d){return c.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[f,e,d]))},sw:function(f,e,d){return c.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[f,e,d]))},ne:function(f,e,d){return c.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[f,e,d]))},nw:function(f,e,d){return c.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[f,e,d]))}},_propagate:function(e,d){c.ui.plugin.call(this,e,[d,this.ui()]);(e!="resize"&&this._trigger(e,d,this.ui()))},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}));c.extend(c.ui.resizable,{version:"1.7.2",eventPrefix:"resize",defaults:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,cancel:":input,option",containment:false,delay:0,distance:1,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1000}});c.ui.plugin.add("resizable","alsoResize",{start:function(e,f){var d=c(this).data("resizable"),g=d.options;_store=function(h){c(h).each(function(){c(this).data("resizable-alsoresize",{width:parseInt(c(this).width(),10),height:parseInt(c(this).height(),10),left:parseInt(c(this).css("left"),10),top:parseInt(c(this).css("top"),10)})})};if(typeof(g.alsoResize)=="object"&&!g.alsoResize.parentNode){if(g.alsoResize.length){g.alsoResize=g.alsoResize[0];_store(g.alsoResize)}else{c.each(g.alsoResize,function(h,i){_store(h)})}}else{_store(g.alsoResize)}},resize:function(f,h){var e=c(this).data("resizable"),i=e.options,g=e.originalSize,k=e.originalPosition;var j={height:(e.size.height-g.height)||0,width:(e.size.width-g.width)||0,top:(e.position.top-k.top)||0,left:(e.position.left-k.left)||0},d=function(l,m){c(l).each(function(){var p=c(this),q=c(this).data("resizable-alsoresize"),o={},n=m&&m.length?m:["width","height","top","left"];c.each(n||["width","height","top","left"],function(r,t){var s=(q[t]||0)+(j[t]||0);if(s&&s>=0){o[t]=s||null}});if(/relative/.test(p.css("position"))&&c.browser.opera){e._revertToRelativePosition=true;p.css({position:"absolute",top:"auto",left:"auto"})}p.css(o)})};if(typeof(i.alsoResize)=="object"&&!i.alsoResize.nodeType){c.each(i.alsoResize,function(l,m){d(l,m)})}else{d(i.alsoResize)}},stop:function(e,f){var d=c(this).data("resizable");if(d._revertToRelativePosition&&c.browser.opera){d._revertToRelativePosition=false;el.css({position:"relative"})}c(this).removeData("resizable-alsoresize-start")}});c.ui.plugin.add("resizable","animate",{stop:function(h,m){var n=c(this).data("resizable"),i=n.options;var g=n._proportionallyResizeElements,d=g.length&&(/textarea/i).test(g[0].nodeName),e=d&&c.ui.hasScroll(g[0],"left")?0:n.sizeDiff.height,k=d?0:n.sizeDiff.width;var f={width:(n.size.width-k),height:(n.size.height-e)},j=(parseInt(n.element.css("left"),10)+(n.position.left-n.originalPosition.left))||null,l=(parseInt(n.element.css("top"),10)+(n.position.top-n.originalPosition.top))||null;n.element.animate(c.extend(f,l&&j?{top:l,left:j}:{}),{duration:i.animateDuration,easing:i.animateEasing,step:function(){var o={width:parseInt(n.element.css("width"),10),height:parseInt(n.element.css("height"),10),top:parseInt(n.element.css("top"),10),left:parseInt(n.element.css("left"),10)};if(g&&g.length){c(g[0]).css({width:o.width,height:o.height})}n._updateCache(o);n._propagate("resize",h)}})}});c.ui.plugin.add("resizable","containment",{start:function(e,q){var s=c(this).data("resizable"),i=s.options,k=s.element;var f=i.containment,j=(f instanceof c)?f.get(0):(/parent/.test(f))?k.parent().get(0):f;if(!j){return}s.containerElement=c(j);if(/document/.test(f)||f==document){s.containerOffset={left:0,top:0};s.containerPosition={left:0,top:0};s.parentData={element:c(document),left:0,top:0,width:c(document).width(),height:c(document).height()||document.body.parentNode.scrollHeight}}else{var m=c(j),h=[];c(["Top","Right","Left","Bottom"]).each(function(p,o){h[p]=b(m.css("padding"+o))});s.containerOffset=m.offset();s.containerPosition=m.position();s.containerSize={height:(m.innerHeight()-h[3]),width:(m.innerWidth()-h[1])};var n=s.containerOffset,d=s.containerSize.height,l=s.containerSize.width,g=(c.ui.hasScroll(j,"left")?j.scrollWidth:l),r=(c.ui.hasScroll(j)?j.scrollHeight:d);s.parentData={element:j,left:n.left,top:n.top,width:g,height:r}}},resize:function(f,p){var s=c(this).data("resizable"),h=s.options,e=s.containerSize,n=s.containerOffset,l=s.size,m=s.position,q=s._aspectRatio||f.shiftKey,d={top:0,left:0},g=s.containerElement;if(g[0]!=document&&(/static/).test(g.css("position"))){d=n}if(m.left<(s._helper?n.left:0)){s.size.width=s.size.width+(s._helper?(s.position.left-n.left):(s.position.left-d.left));if(q){s.size.height=s.size.width/h.aspectRatio}s.position.left=h.helper?n.left:0}if(m.top<(s._helper?n.top:0))
-{s.size.height=s.size.height+(s._helper?(s.position.top-n.top):s.position.top);if(q){s.size.width=s.size.height*h.aspectRatio}s.position.top=s._helper?n.top:0}s.offset.left=s.parentData.left+s.position.left;s.offset.top=s.parentData.top+s.position.top;var k=Math.abs((s._helper?s.offset.left-d.left:(s.offset.left-d.left))+s.sizeDiff.width),r=Math.abs((s._helper?s.offset.top-d.top:(s.offset.top-n.top))+s.sizeDiff.height);var j=s.containerElement.get(0)==s.element.parent().get(0),i=/relative|absolute/.test(s.containerElement.css("position"));if(j&&i){k-=s.parentData.left}if(k+s.size.width>=s.parentData.width){s.size.width=s.parentData.width-k;if(q){s.size.height=s.size.width/s.aspectRatio}}if(r+s.size.height>=s.parentData.height){s.size.height=s.parentData.height-r;if(q){s.size.width=s.size.height*s.aspectRatio}}},stop:function(e,m){var p=c(this).data("resizable"),f=p.options,k=p.position,l=p.containerOffset,d=p.containerPosition,g=p.containerElement;var i=c(p.helper),q=i.offset(),n=i.outerWidth()-p.sizeDiff.width,j=i.outerHeight()-p.sizeDiff.height;if(p._helper&&!f.animate&&(/relative/).test(g.css("position"))){c(this).css({left:q.left-d.left-l.left,width:n,height:j})}if(p._helper&&!f.animate&&(/static/).test(g.css("position"))){c(this).css({left:q.left-d.left-l.left,width:n,height:j})}}});c.ui.plugin.add("resizable","ghost",{start:function(f,g){var d=c(this).data("resizable"),h=d.options,e=d.size;d.ghost=d.originalElement.clone();d.ghost.css({opacity:0.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof h.ghost=="string"?h.ghost:"");d.ghost.appendTo(d.helper)},resize:function(e,f){var d=c(this).data("resizable"),g=d.options;if(d.ghost){d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})}},stop:function(e,f){var d=c(this).data("resizable"),g=d.options;if(d.ghost&&d.helper){d.helper.get(0).removeChild(d.ghost.get(0))}}});c.ui.plugin.add("resizable","grid",{resize:function(d,l){var n=c(this).data("resizable"),g=n.options,j=n.size,h=n.originalSize,i=n.originalPosition,m=n.axis,k=g._aspectRatio||d.shiftKey;g.grid=typeof g.grid=="number"?[g.grid,g.grid]:g.grid;var f=Math.round((j.width-h.width)/(g.grid[0]||1))*(g.grid[0]||1),e=Math.round((j.height-h.height)/(g.grid[1]||1))*(g.grid[1]||1);if(/^(se|s|e)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e}else{if(/^(ne)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e;n.position.top=i.top-e}else{if(/^(sw)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e;n.position.left=i.left-f}else{n.size.width=h.width+f;n.size.height=h.height+e;n.position.top=i.top-e;n.position.left=i.left-f}}}}});var b=function(d){return parseInt(d,10)||0};var a=function(d){return !isNaN(parseInt(d,10))}})(jQuery);;
-/**
- * jQuery.ScrollTo - Easy element scrolling using jQuery.
- * Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com
- * Licensed under GPL license (http://www.opensource.org/licenses/gpl-license.php).
- * Date: 2/8/2008
- * @author Ariel Flesler
- * @version 1.3.2
- */
-;(function($){var o=$.scrollTo=function(a,b,c){o.window().scrollTo(a,b,c)};o.defaults={axis:'y',duration:1};o.window=function(){return $($.browser.safari?'body':'html')};$.fn.scrollTo=function(l,m,n){if(typeof m=='object'){n=m;m=0}n=$.extend({},o.defaults,n);m=m||n.speed||n.duration;n.queue=n.queue&&n.axis.length>1;if(n.queue)m/=2;n.offset=j(n.offset);n.over=j(n.over);return this.each(function(){var a=this,b=$(a),t=l,c,d={},w=b.is('html,body');switch(typeof t){case'number':case'string':if(/^([+-]=)?\d+(px)?$/.test(t)){t=j(t);break}t=$(t,this);case'object':if(t.is||t.style)c=(t=$(t)).offset()}$.each(n.axis.split(''),function(i,f){var P=f=='x'?'Left':'Top',p=P.toLowerCase(),k='scroll'+P,e=a[k],D=f=='x'?'Width':'Height';if(c){d[k]=c[p]+(w?0:e-b.offset()[p]);if(n.margin){d[k]-=parseInt(t.css('margin'+P))||0;d[k]-=parseInt(t.css('border'+P+'Width'))||0}d[k]+=n.offset[p]||0;if(n.over[p])d[k]+=t[D.toLowerCase()]()*n.over[p]}else d[k]=t[p];if(/^\d+$/.test(d[k]))d[k]=d[k]<=0?0:Math.min(d[k],h(D));if(!i&&n.queue){if(e!=d[k])g(n.onAfterFirst);delete d[k]}});g(n.onAfter);function g(a){b.animate(d,m,n.easing,a&&function(){a.call(this,l)})};function h(D){var b=w?$.browser.opera?document.body:document.documentElement:a;return b['scroll'+D]-b['client'+D]}})};function j(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
-
-/*
- * jQuery UI Effects 1.8.16
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/
- */
-jQuery.effects||function(f,j){function m(c){var a;if(c&&c.constructor==Array&&c.length==3)return c;if(a=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c))return[parseInt(a[1],10),parseInt(a[2],10),parseInt(a[3],10)];if(a=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c))return[parseFloat(a[1])*2.55,parseFloat(a[2])*2.55,parseFloat(a[3])*2.55];if(a=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c))return[parseInt(a[1],
-16),parseInt(a[2],16),parseInt(a[3],16)];if(a=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c))return[parseInt(a[1]+a[1],16),parseInt(a[2]+a[2],16),parseInt(a[3]+a[3],16)];if(/rgba\(0, 0, 0, 0\)/.exec(c))return n.transparent;return n[f.trim(c).toLowerCase()]}function s(c,a){var b;do{b=f.curCSS(c,a);if(b!=""&&b!="transparent"||f.nodeName(c,"body"))break;a="backgroundColor"}while(c=c.parentNode);return m(b)}function o(){var c=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,
-a={},b,d;if(c&&c.length&&c[0]&&c[c[0]])for(var e=c.length;e--;){b=c[e];if(typeof c[b]=="string"){d=b.replace(/\-(\w)/g,function(g,h){return h.toUpperCase()});a[d]=c[b]}}else for(b in c)if(typeof c[b]==="string")a[b]=c[b];return a}function p(c){var a,b;for(a in c){b=c[a];if(b==null||f.isFunction(b)||a in t||/scrollbar/.test(a)||!/color/i.test(a)&&isNaN(parseFloat(b)))delete c[a]}return c}function u(c,a){var b={_:0},d;for(d in a)if(c[d]!=a[d])b[d]=a[d];return b}function k(c,a,b,d){if(typeof c=="object"){d=
-a;b=null;a=c;c=a.effect}if(f.isFunction(a)){d=a;b=null;a={}}if(typeof a=="number"||f.fx.speeds[a]){d=b;b=a;a={}}if(f.isFunction(b)){d=b;b=null}a=a||{};b=b||a.duration;b=f.fx.off?0:typeof b=="number"?b:b in f.fx.speeds?f.fx.speeds[b]:f.fx.speeds._default;d=d||a.complete;return[c,a,b,d]}function l(c){if(!c||typeof c==="number"||f.fx.speeds[c])return true;if(typeof c==="string"&&!f.effects[c])return true;return false}f.effects={};f.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor",
-"borderTopColor","borderColor","color","outlineColor"],function(c,a){f.fx.step[a]=function(b){if(!b.colorInit){b.start=s(b.elem,a);b.end=m(b.end);b.colorInit=true}b.elem.style[a]="rgb("+Math.max(Math.min(parseInt(b.pos*(b.end[0]-b.start[0])+b.start[0],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[1]-b.start[1])+b.start[1],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[2]-b.start[2])+b.start[2],10),255),0)+")"}});var n={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,
-0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,
-211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},q=["add","remove","toggle"],t={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};f.effects.animateClass=function(c,a,b,
-d){if(f.isFunction(b)){d=b;b=null}return this.queue(function(){var e=f(this),g=e.attr("style")||" ",h=p(o.call(this)),r,v=e.attr("class");f.each(q,function(w,i){c[i]&&e[i+"Class"](c[i])});r=p(o.call(this));e.attr("class",v);e.animate(u(h,r),{queue:false,duration:a,easing:b,complete:function(){f.each(q,function(w,i){c[i]&&e[i+"Class"](c[i])});if(typeof e.attr("style")=="object"){e.attr("style").cssText="";e.attr("style").cssText=g}else e.attr("style",g);d&&d.apply(this,arguments);f.dequeue(this)}})})};
-f.fn.extend({_addClass:f.fn.addClass,addClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{add:c},a,b,d]):this._addClass(c)},_removeClass:f.fn.removeClass,removeClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{remove:c},a,b,d]):this._removeClass(c)},_toggleClass:f.fn.toggleClass,toggleClass:function(c,a,b,d,e){return typeof a=="boolean"||a===j?b?f.effects.animateClass.apply(this,[a?{add:c}:{remove:c},b,d,e]):this._toggleClass(c,a):f.effects.animateClass.apply(this,
-[{toggle:c},a,b,d])},switchClass:function(c,a,b,d,e){return f.effects.animateClass.apply(this,[{add:a,remove:c},b,d,e])}});f.extend(f.effects,{version:"1.8.16",save:function(c,a){for(var b=0;b<a.length;b++)a[b]!==null&&c.data("ec.storage."+a[b],c[0].style[a[b]])},restore:function(c,a){for(var b=0;b<a.length;b++)a[b]!==null&&c.css(a[b],c.data("ec.storage."+a[b]))},setMode:function(c,a){if(a=="toggle")a=c.is(":hidden")?"show":"hide";return a},getBaseline:function(c,a){var b;switch(c[0]){case "top":b=
-0;break;case "middle":b=0.5;break;case "bottom":b=1;break;default:b=c[0]/a.height}switch(c[1]){case "left":c=0;break;case "center":c=0.5;break;case "right":c=1;break;default:c=c[1]/a.width}return{x:c,y:b}},createWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent();var a={width:c.outerWidth(true),height:c.outerHeight(true),"float":c.css("float")},b=f("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),
-d=document.activeElement;c.wrap(b);if(c[0]===d||f.contains(c[0],d))f(d).focus();b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(e,g){a[g]=c.css(g);if(isNaN(parseInt(a[g],10)))a[g]="auto"});c.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})}return b.css(a).show()},removeWrapper:function(c){var a,b=document.activeElement;
-if(c.parent().is(".ui-effects-wrapper")){a=c.parent().replaceWith(c);if(c[0]===b||f.contains(c[0],b))f(b).focus();return a}return c},setTransition:function(c,a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=k.apply(this,arguments),b={options:a[1],duration:a[2],callback:a[3]};a=b.options.mode;var d=f.effects[c];if(f.fx.off||!d)return a?this[a](b.duration,b.callback):this.each(function(){b.callback&&b.callback.call(this)});
-return d.call(this,b)},_show:f.fn.show,show:function(c){if(l(c))return this._show.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(l(c))return this._hide.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(l(c)||typeof c==="boolean"||f.isFunction(c))return this.__toggle.apply(this,arguments);else{var a=k.apply(this,
-arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c),b=[];f.each(["em","px","%","pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c,a,b,d,e){if((a/=e/2)<1)return d/
-2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c,a,b,d,e){return d*((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(c,a,b,
-d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2,10*(a/e-1))+b},easeOutExpo:function(c,
-a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a==e)return b+d;if((a/=e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(c,a,b,
-d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);return-(h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g))+b},easeOutElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);return h*Math.pow(2,-10*a)*Math.sin((a*e-c)*2*Math.PI/g)+d+b},easeInOutElastic:function(c,a,b,d,e){c=1.70158;var g=
-0,h=d;if(a==0)return b;if((a/=e/2)==2)return b+d;g||(g=e*0.3*1.5);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);if(a<1)return-0.5*h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)+b;return h*Math.pow(2,-10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)*0.5+d+b},easeInBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;return d*(a/=e)*a*((g+1)*a-g)+b},easeOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;return d*((a=a/e-1)*a*((g+1)*a+g)+1)+b},easeInOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;
-if((a/=e/2)<1)return d/2*a*a*(((g*=1.525)+1)*a-g)+b;return d/2*((a-=2)*a*(((g*=1.525)+1)*a+g)+2)+b},easeInBounce:function(c,a,b,d,e){return d-f.easing.easeOutBounce(c,e-a,0,d,e)+b},easeOutBounce:function(c,a,b,d,e){return(a/=e)<1/2.75?d*7.5625*a*a+b:a<2/2.75?d*(7.5625*(a-=1.5/2.75)*a+0.75)+b:a<2.5/2.75?d*(7.5625*(a-=2.25/2.75)*a+0.9375)+b:d*(7.5625*(a-=2.625/2.75)*a+0.984375)+b},easeInOutBounce:function(c,a,b,d,e){if(a<e/2)return f.easing.easeInBounce(c,a*2,0,d,e)*0.5+b;return f.easing.easeOutBounce(c,
-a*2-e,0,d,e)*0.5+d*0.5+b}})}(jQuery);
-;
-/*
- * jQuery UI Effects Highlight 1.8.16
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Highlight
- *
- * Depends:
- *	jquery.effects.core.js
- */
-(function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&&
-this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
-;
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/modules.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/modules.html
deleted file mode 100644
index 4047652..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/modules.html
+++ /dev/null
@@ -1,102 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Modules</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('modules.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">Modules</div>  </div>
-</div><!--header-->
-<div class="contents">
-<div class="textblock">Here is a list of all modules:</div><ul>
-<li><a class="el" href="group__Opaque.html">Opaque Types</a></li>
-<li><a class="el" href="group__Memory.html">Memory Allocation</a></li>
-<li><a class="el" href="group__Basic.html">Basic Operations</a></li>
-<li><a class="el" href="group__Configuration.html">Configuration Options</a></li>
-<li><a class="el" href="group__IO.html">I/O and Messages</a></li>
-<li><a class="el" href="group__Parse.html">Document Parse</a></li>
-<li><a class="el" href="group__Clean.html">Diagnostics and Repair</a></li>
-<li><a class="el" href="group__Save.html">Document Save Functions</a></li>
-<li><a class="el" href="group__Tree.html">Document Tree</a></li>
-<li><a class="el" href="group__NodeAsk.html">Node Interrogation</a><ul>
-<li><a class="el" href="group__NodeIsElementName.html">Deprecated node interrogation per TagId</a></li>
-</ul>
-</li>
-<li><a class="el" href="group__Attribute.html">Attribute Interrogation</a><ul>
-<li><a class="el" href="group__AttrIsAttributeName.html">Deprecated attribute interrogation per AttrId</a></li>
-</ul>
-</li>
-<li><a class="el" href="group__AttrGet.html">Attribute Retrieval</a><ul>
-<li><a class="el" href="group__AttrGetAttributeName.html">Deprecated attribute retrieval per AttrId</a></li>
-</ul>
-</li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/modules.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/modules.js
deleted file mode 100644
index b79deb6..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/modules.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var modules =
-[
-    [ "Opaque Types", "group__Opaque.html", "group__Opaque" ],
-    [ "Memory Allocation", "group__Memory.html", "group__Memory" ],
-    [ "Basic Operations", "group__Basic.html", "group__Basic" ],
-    [ "Configuration Options", "group__Configuration.html", "group__Configuration" ],
-    [ "I/O and Messages", "group__IO.html", "group__IO" ],
-    [ "Document Parse", "group__Parse.html", "group__Parse" ],
-    [ "Diagnostics and Repair", "group__Clean.html", "group__Clean" ],
-    [ "Document Save Functions", "group__Save.html", "group__Save" ],
-    [ "Document Tree", "group__Tree.html", "group__Tree" ],
-    [ "Node Interrogation", "group__NodeAsk.html", "group__NodeAsk" ],
-    [ "Attribute Interrogation", "group__Attribute.html", "group__Attribute" ],
-    [ "Attribute Retrieval", "group__AttrGet.html", "group__AttrGet" ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/nav_f.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/nav_f.png
deleted file mode 100644
index 1b07a16..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/nav_f.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/nav_h.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/nav_h.png
deleted file mode 100644
index 01f5fa6..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/nav_h.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/navtree.css b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/navtree.css
deleted file mode 100644
index 8be29b2..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/navtree.css
+++ /dev/null
@@ -1,127 +0,0 @@
-#nav-tree .children_ul {
-  margin:0;
-  padding:4px;
-}
-
-#nav-tree ul {
-  list-style:none outside none;
-  margin:0px;
-  padding:0px;
-}
-
-#nav-tree li {
-  white-space:nowrap;
-  margin:0px;
-  padding:0px;
-}
-
-#nav-tree .plus {
-  margin:0px;
-}
-
-#nav-tree .selected {
-  background-image: url('tab_a.png');
-  background-repeat:repeat-x;
-  color: #fff;
-  text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
-}
-
-#nav-tree img {
-  margin:0px;
-  padding:0px;
-  border:0px;
-  vertical-align: middle;
-}
-
-#nav-tree a {
-  text-decoration:none;
-  padding:0px;
-  margin:0px;
-  outline:none;
-}
-
-#nav-tree .label {
-  margin:0px;
-  padding:0px;
-}
-
-#nav-tree .label a {
-  padding:2px;
-}
-
-#nav-tree .selected a {
-  text-decoration:none;
-  padding:2px;
-  margin:0px;
-  color:#fff;
-}
-
-#nav-tree .children_ul {
-  margin:0px;
-  padding:0px;
-}
-
-#nav-tree .item {
-  margin:0px;
-  padding:0px;
-}
-
-#nav-tree {
-  padding: 0px 0px;
-  background-color: #FAFAFF; 
-  font-size:14px;
-  overflow:auto;
-}
-
-#doc-content {
-  overflow:auto;
-  display:block;
-  padding:0px;
-  margin:0px;
-}
-
-#side-nav {
-  padding:0 6px 0 0;
-  margin: 0px;
-  display:block;
-  position: absolute;
-  left: 0px;
-  width: 300px;
-}
-
-.ui-resizable .ui-resizable-handle {
-  display:block;
-}
-
-.ui-resizable-e {
-  background:url("ftv2splitbar.png") repeat scroll right center transparent;
-  cursor:e-resize;
-  height:100%;
-  right:0;
-  top:0;
-  width:6px;
-}
-
-.ui-resizable-handle {
-  display:none;
-  font-size:0.1px;
-  position:absolute;
-  z-index:1;
-}
-
-#nav-tree-contents {
-  margin: 6px 0px 0px 0px;
-}
-
-#nav-tree {
-  background-image:url('nav_h.png');
-  background-repeat:repeat-x;
-  background-color: #F9FAFC;
-}
-
-@media print
-{
-  #nav-tree { display: none; }
-  div.ui-resizable-handle { display: none; position: relative; }
-}
-
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/navtree.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/navtree.js
deleted file mode 100644
index 28c75a3..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/navtree.js
+++ /dev/null
@@ -1,380 +0,0 @@
-var NAVTREE =
-[
-  [ "HTML Tidy", "index.html", [
-    [ "Deprecated List", "deprecated.html", null ],
-    [ "Modules", "modules.html", "modules" ],
-    [ "Data Structures", null, [
-      [ "Data Structures", "annotated.html", "annotated" ],
-      [ "Data Fields", "functions.html", [
-        [ "All", "functions.html", null ],
-        [ "Functions", "functions_func.html", null ],
-        [ "Variables", "functions_vars.html", null ]
-      ] ]
-    ] ],
-    [ "Files", null, [
-      [ "File List", "files.html", "files" ],
-      [ "Globals", "globals.html", [
-        [ "All", "globals.html", null ],
-        [ "Functions", "globals_func.html", null ],
-        [ "Typedefs", "globals_type.html", null ],
-        [ "Defines", "globals_defs.html", null ]
-      ] ]
-    ] ]
-  ] ]
-];
-
-function getData(varName)
-{
-  var i = varName.lastIndexOf('/');
-  var n = i>=0 ? varName.substring(i+1) : varName;
-  return eval(n);
-}
-
-function stripPath(uri)
-{
-  return uri.substring(uri.lastIndexOf('/')+1);
-}
-
-function getScript(scriptName,func,show)
-{
-  var head = document.getElementsByTagName("head")[0]; 
-  var script = document.createElement('script');
-  script.id = scriptName;
-  script.type = 'text/javascript';
-  script.onload = func; 
-  script.src = scriptName+'.js'; 
-  script.onreadystatechange = function() {
-    if (script.readyState=='complete' || script.readyState=='loaded') { 
-      func(); if (show) showRoot(); 
-    }
-  };
-  head.appendChild(script); 
-}
-
-function createIndent(o,domNode,node,level)
-{
-  if (node.parentNode && node.parentNode.parentNode) {
-    createIndent(o,domNode,node.parentNode,level+1);
-  }
-  var imgNode = document.createElement("img");
-  imgNode.width = 16;
-  imgNode.height = 22;
-  if (level==0 && node.childrenData) {
-    node.plus_img = imgNode;
-    node.expandToggle = document.createElement("a");
-    node.expandToggle.href = "javascript:void(0)";
-    node.expandToggle.onclick = function() {
-      if (node.expanded) {
-        $(node.getChildrenUL()).slideUp("fast");
-        if (node.isLast) {
-          node.plus_img.src = node.relpath+"ftv2plastnode.png";
-        } else {
-          node.plus_img.src = node.relpath+"ftv2pnode.png";
-        }
-        node.expanded = false;
-      } else {
-        expandNode(o, node, false, false);
-      }
-    }
-    node.expandToggle.appendChild(imgNode);
-    domNode.appendChild(node.expandToggle);
-  } else {
-    domNode.appendChild(imgNode);
-  }
-  if (level==0) {
-    if (node.isLast) {
-      if (node.childrenData) {
-        imgNode.src = node.relpath+"ftv2plastnode.png";
-      } else {
-        imgNode.src = node.relpath+"ftv2lastnode.png";
-        domNode.appendChild(imgNode);
-      }
-    } else {
-      if (node.childrenData) {
-        imgNode.src = node.relpath+"ftv2pnode.png";
-      } else {
-        imgNode.src = node.relpath+"ftv2node.png";
-        domNode.appendChild(imgNode);
-      }
-    }
-  } else {
-    if (node.isLast) {
-      imgNode.src = node.relpath+"ftv2blank.png";
-    } else {
-      imgNode.src = node.relpath+"ftv2vertline.png";
-    }
-  }
-  imgNode.border = "0";
-}
-
-function newNode(o, po, text, link, childrenData, lastNode)
-{
-  var node = new Object();
-  node.children = Array();
-  node.childrenData = childrenData;
-  node.depth = po.depth + 1;
-  node.relpath = po.relpath;
-  node.isLast = lastNode;
-
-  node.li = document.createElement("li");
-  po.getChildrenUL().appendChild(node.li);
-  node.parentNode = po;
-
-  node.itemDiv = document.createElement("div");
-  node.itemDiv.className = "item";
-
-  node.labelSpan = document.createElement("span");
-  node.labelSpan.className = "label";
-
-  createIndent(o,node.itemDiv,node,0);
-  node.itemDiv.appendChild(node.labelSpan);
-  node.li.appendChild(node.itemDiv);
-
-  var a = document.createElement("a");
-  node.labelSpan.appendChild(a);
-  node.label = document.createTextNode(text);
-  node.expanded = false;
-  a.appendChild(node.label);
-  if (link) {
-    var url;
-    if (link.substring(0,1)=='^') {
-      url = link.substring(1);
-      link = url;
-    } else {
-      url = node.relpath+link;
-    }
-    a.className = stripPath(link.replace('#',':'));
-    if (link.indexOf('#')!=-1) {
-      var aname = '#'+link.split('#')[1];
-      var srcPage = stripPath($(location).attr('pathname'));
-      var targetPage = stripPath(link.split('#')[0]);
-      a.href = srcPage!=targetPage ? url : '#';
-      a.onclick = function(){
-        if (!$(a).parent().parent().hasClass('selected'))
-        {
-          $('.item').removeClass('selected');
-          $('.item').removeAttr('id');
-          $(a).parent().parent().addClass('selected');
-          $(a).parent().parent().attr('id','selected');
-        }
-        var pos, anchor = $(aname), docContent = $('#doc-content');
-        if (anchor.parent().attr('class')=='memItemLeft') {
-          pos = anchor.parent().position().top;
-        } else {
-          pos = anchor.position().top;
-        }
-        var dist = Math.abs(Math.min(
-                     pos-docContent.offset().top,
-                     docContent[0].scrollHeight-
-                     docContent.height()-docContent.scrollTop()));
-        docContent.animate({
-          scrollTop: pos + docContent.scrollTop() - docContent.offset().top
-        },Math.max(50,Math.min(500,dist)),function(){
-          window.location.replace(aname);
-        });
-      };
-    } else {
-      a.href = url;
-    }
-  } else {
-    if (childrenData != null) 
-    {
-      a.className = "nolink";
-      a.href = "javascript:void(0)";
-      a.onclick = node.expandToggle.onclick;
-    }
-  }
-
-  node.childrenUL = null;
-  node.getChildrenUL = function() {
-    if (!node.childrenUL) {
-      node.childrenUL = document.createElement("ul");
-      node.childrenUL.className = "children_ul";
-      node.childrenUL.style.display = "none";
-      node.li.appendChild(node.childrenUL);
-    }
-    return node.childrenUL;
-  };
-
-  return node;
-}
-
-function showRoot()
-{
-  var headerHeight = $("#top").height();
-  var footerHeight = $("#nav-path").height();
-  var windowHeight = $(window).height() - headerHeight - footerHeight;
-  (function (){ // retry until we can scroll to the selected item
-    try {
-      navtree.scrollTo('#selected',0,{offset:-windowHeight/2});
-    } catch (err) {
-      setTimeout(arguments.callee, 0);
-    }
-  })();
-}
-
-function expandNode(o, node, imm, showRoot)
-{
-  if (node.childrenData && !node.expanded) {
-    if (typeof(node.childrenData)==='string') {
-      var varName    = node.childrenData;
-      getScript(node.relpath+varName,function(){
-        node.childrenData = getData(varName);
-        expandNode(o, node, imm, showRoot);
-      }, showRoot);
-    } else {
-      if (!node.childrenVisited) {
-        getNode(o, node);
-      } if (imm) {
-        $(node.getChildrenUL()).show();
-      } else {
-        $(node.getChildrenUL()).slideDown("fast");
-      }
-      if (node.isLast) {
-        node.plus_img.src = node.relpath+"ftv2mlastnode.png";
-      } else {
-        node.plus_img.src = node.relpath+"ftv2mnode.png";
-      }
-      node.expanded = true;
-    }
-  }
-}
-
-function highlightAnchor()
-{
-  var anchor = $($(location).attr('hash'));
-  if (anchor.parent().attr('class')=='memItemLeft'){
-    var rows = $('.memberdecls tr[class$=\""'+
-        window.location.hash.substring(1)+'"\"]').children();
-    rows.effect('highlight',{},1500);
-  } else if (anchor.parent().is(":header")) {
-    anchor.parent().effect('highlight',{},1500);
-  } else {
-    var targetDiv = anchor.next();
-    $(targetDiv).children('.memproto,.memdoc').effect("highlight",{},1500);
-  }
-}
-
-function showNode(o, node, index)
-{
-  if (node.childrenData /*&& !node.expanded*/) {
-    if (typeof(node.childrenData)==='string') {
-      var varName    = node.childrenData;
-      getScript(node.relpath+varName,function(){
-        node.childrenData = getData(varName);
-        showNode(o,node,index);
-      },true);
-    } else {
-      if (!node.childrenVisited) {
-        getNode(o, node);
-      }
-      $(node.getChildrenUL()).show();
-      if (node.isLast) {
-        node.plus_img.src = node.relpath+"ftv2mlastnode.png";
-      } else {
-        node.plus_img.src = node.relpath+"ftv2mnode.png";
-      }
-      node.expanded = true;
-      var n = node.children[o.breadcrumbs[index]];
-      if (index+1<o.breadcrumbs.length) {
-        showNode(o,n,index+1);
-      } else {
-        if (typeof(n.childrenData)==='string') {
-          var varName = n.childrenData;
-          getScript(n.relpath+varName,function(){
-            n.childrenData = getData(varName);
-            node.expanded=false;
-            showNode(o,node,index); // retry with child node expanded
-          },true);
-        } else {
-          if (o.toroot=="index.html" || n.childrenData) {
-            expandNode(o, n, true, true);
-          }
-          var a;
-          if ($(location).attr('hash')) {
-            var link=stripPath($(location).attr('pathname'))+':'+
-                     $(location).attr('hash').substring(1);
-            a=$('.item a[class$=\""'+link+'"\"]');
-          }
-          if (a && a.length) {
-            a.parent().parent().addClass('selected');
-            a.parent().parent().attr('id','selected');
-            highlightAnchor();
-          } else {
-            $(n.itemDiv).addClass('selected');
-            $(n.itemDiv).attr('id','selected');
-          }
-          showRoot();
-        }
-      }
-    }
-  }
-}
-
-function getNode(o, po)
-{
-  po.childrenVisited = true;
-  var l = po.childrenData.length-1;
-  for (var i in po.childrenData) {
-    var nodeData = po.childrenData[i];
-    po.children[i] = newNode(o, po, nodeData[0], nodeData[1], nodeData[2],
-      i==l);
-  }
-}
-
-function navTo(o,root,hash,relpath)
-{
-  getScript(relpath+"navtreeindex",function(){
-    var navTreeIndex = eval('NAVTREEINDEX');
-    if (navTreeIndex) {
-      var nti = navTreeIndex[root+hash];
-      o.breadcrumbs = nti ? nti : navTreeIndex[root];
-      if (o.breadcrumbs==null) o.breadcrumbs = navTreeIndex["index.html"];
-      o.breadcrumbs.unshift(0);
-      showNode(o, o.node, 0);
-    }
-  },true);
-}
-
-function initNavTree(toroot,relpath)
-{
-  var o = new Object();
-  o.toroot = toroot;
-  o.node = new Object();
-  o.node.li = document.getElementById("nav-tree-contents");
-  o.node.childrenData = NAVTREE;
-  o.node.children = new Array();
-  o.node.childrenUL = document.createElement("ul");
-  o.node.getChildrenUL = function() { return o.node.childrenUL; };
-  o.node.li.appendChild(o.node.childrenUL);
-  o.node.depth = 0;
-  o.node.relpath = relpath;
-  o.node.expanded = false;
-  o.node.isLast = true;
-  o.node.plus_img = document.createElement("img");
-  o.node.plus_img.src = relpath+"ftv2pnode.png";
-  o.node.plus_img.width = 16;
-  o.node.plus_img.height = 22;
-
-  navTo(o,toroot,window.location.hash,relpath);
-
-  $(window).bind('hashchange', function(){
-     if (window.location.hash && window.location.hash.length>1){
-       var a;
-       if ($(location).attr('hash')){
-         var clslink=stripPath($(location).attr('pathname'))+':'+
-                               $(location).attr('hash').substring(1);
-         a=$('.item a[class$=\""'+clslink+'"\"]');
-       }
-       if (a==null || !$(a).parent().parent().hasClass('selected')){
-         $('.item').removeClass('selected');
-         $('.item').removeAttr('id');
-       }
-       var link=stripPath($(location).attr('pathname'));
-       navTo(o,link,$(location).attr('hash'),relpath);
-     }
-  })
-
-  $(window).load(showRoot);
-}
-
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/navtreeindex.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/navtreeindex.js
deleted file mode 100644
index 2970db8..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/navtreeindex.js
+++ /dev/null
@@ -1,41 +0,0 @@
-var NAVTREEINDEX =
-{
-"index.html":[],
-"deprecated.html":[0],
-"modules.html":[1],
-"group__Opaque.html":[1,0],
-"group__Memory.html":[1,1],
-"group__Basic.html":[1,2],
-"group__Configuration.html":[1,3],
-"group__IO.html":[1,4],
-"group__Parse.html":[1,5],
-"group__Clean.html":[1,6],
-"group__Save.html":[1,7],
-"group__Tree.html":[1,8],
-"group__NodeAsk.html":[1,9],
-"group__NodeIsElementName.html":[1,9,0],
-"group__Attribute.html":[1,10],
-"group__AttrIsAttributeName.html":[1,10,0],
-"group__AttrGet.html":[1,11],
-"group__AttrGetAttributeName.html":[1,11,0],
-"annotated.html":[2,0],
-"struct__TidyAllocator.html":[2,0,0],
-"struct__TidyAllocatorVtbl.html":[2,0,1],
-"struct__TidyBuffer.html":[2,0,2],
-"struct__TidyInputSource.html":[2,0,3],
-"struct__TidyOutputSink.html":[2,0,4],
-"structTidyAttr.html":[2,0,5],
-"structTidyDoc.html":[2,0,6],
-"structTidyNode.html":[2,0,7],
-"structTidyOption.html":[2,0,8],
-"functions.html":[2,1,0],
-"functions_func.html":[2,1,1],
-"functions_vars.html":[2,1,2],
-"files.html":[3,0],
-"buffio_8h.html":[3,0,0],
-"tidy_8h.html":[3,0,2],
-"globals.html":[3,1,0],
-"globals_func.html":[3,1,1],
-"globals_type.html":[3,1,2],
-"globals_defs.html":[3,1,3]
-};
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/open.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/open.png
deleted file mode 100644
index 7b35d2c..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/open.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/pages.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/pages.html
deleted file mode 100644
index 8e26486..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/pages.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: Related Pages</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('pages.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">Related Pages</div>  </div>
-</div><!--header-->
-<div class="contents">
-<div class="textblock">Here is a list of all related documentation pages:</div><ul>
-<li><a class="el" href="deprecated.html">Deprecated List</a>
-</li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/platform_8h_source.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/platform_8h_source.html
deleted file mode 100644
index 345bd23..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/platform_8h_source.html
+++ /dev/null
@@ -1,716 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: platform.h Source File</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('platform_8h.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">platform.h</div>  </div>
-</div><!--header-->
-<div class="contents">
-<div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="preprocessor">#ifndef __TIDY_PLATFORM_H__</span>
-<a name="l00002"></a>00002 <span class="preprocessor"></span><span class="preprocessor">#define __TIDY_PLATFORM_H__</span>
-<a name="l00003"></a>00003 <span class="preprocessor"></span>
-<a name="l00004"></a>00004 <span class="comment">/* platform.h -- Platform specifics</span>
-<a name="l00005"></a>00005 <span class="comment"></span>
-<a name="l00006"></a>00006 <span class="comment">  (c) 1998-2008 (W3C) MIT, ERCIM, Keio University</span>
-<a name="l00007"></a>00007 <span class="comment">  See tidy.h for the copyright notice.</span>
-<a name="l00008"></a>00008 <span class="comment"></span>
-<a name="l00009"></a>00009 <span class="comment">  CVS Info :</span>
-<a name="l00010"></a>00010 <span class="comment"></span>
-<a name="l00011"></a>00011 <span class="comment">    $Author: arnaud02 $ </span>
-<a name="l00012"></a>00012 <span class="comment">    $Date: 2008/03/17 12:57:01 $ </span>
-<a name="l00013"></a>00013 <span class="comment">    $Revision: 1.66 $ </span>
-<a name="l00014"></a>00014 <span class="comment"></span>
-<a name="l00015"></a>00015 <span class="comment">*/</span>
-<a name="l00016"></a>00016 
-<a name="l00017"></a>00017 <span class="preprocessor">#ifdef __cplusplus</span>
-<a name="l00018"></a>00018 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">&quot;C&quot;</span> {
-<a name="l00019"></a>00019 <span class="preprocessor">#endif</span>
-<a name="l00020"></a>00020 <span class="preprocessor"></span>
-<a name="l00021"></a>00021 <span class="comment">/*</span>
-<a name="l00022"></a>00022 <span class="comment">  Uncomment and edit one of the following #defines if you</span>
-<a name="l00023"></a>00023 <span class="comment">  want to specify the config file at compile-time.</span>
-<a name="l00024"></a>00024 <span class="comment">*/</span>
-<a name="l00025"></a>00025 
-<a name="l00026"></a>00026 <span class="comment">/* #define TIDY_CONFIG_FILE &quot;/etc/tidy_config.txt&quot; */</span> <span class="comment">/* original */</span>
-<a name="l00027"></a>00027 <span class="comment">/* #define TIDY_CONFIG_FILE &quot;/etc/tidyrc&quot; */</span>
-<a name="l00028"></a>00028 <span class="comment">/* #define TIDY_CONFIG_FILE &quot;/etc/tidy.conf&quot; */</span>
-<a name="l00029"></a>00029 
-<a name="l00030"></a>00030 <span class="comment">/*</span>
-<a name="l00031"></a>00031 <span class="comment">  Uncomment the following #define if you are on a system</span>
-<a name="l00032"></a>00032 <span class="comment">  supporting the HOME environment variable.</span>
-<a name="l00033"></a>00033 <span class="comment">  It enables tidy to find config files named ~/.tidyrc if </span>
-<a name="l00034"></a>00034 <span class="comment">  the HTML_TIDY environment variable is not set.</span>
-<a name="l00035"></a>00035 <span class="comment">*/</span>
-<a name="l00036"></a>00036 <span class="comment">/* #define TIDY_USER_CONFIG_FILE &quot;~/.tidyrc&quot; */</span>
-<a name="l00037"></a>00037 
-<a name="l00038"></a>00038 <span class="comment">/*</span>
-<a name="l00039"></a>00039 <span class="comment">  Uncomment the following #define if your</span>
-<a name="l00040"></a>00040 <span class="comment">  system supports the call getpwnam(). </span>
-<a name="l00041"></a>00041 <span class="comment">  E.g. Unix and Linux.</span>
-<a name="l00042"></a>00042 <span class="comment"></span>
-<a name="l00043"></a>00043 <span class="comment">  It enables tidy to find files named </span>
-<a name="l00044"></a>00044 <span class="comment">  ~your/foo for use in the HTML_TIDY environment</span>
-<a name="l00045"></a>00045 <span class="comment">  variable or CONFIG_FILE or USER_CONFIGFILE or</span>
-<a name="l00046"></a>00046 <span class="comment">  on the command line: -config ~joebob/tidy.cfg</span>
-<a name="l00047"></a>00047 <span class="comment"></span>
-<a name="l00048"></a>00048 <span class="comment">  Contributed by Todd Lewis.</span>
-<a name="l00049"></a>00049 <span class="comment">*/</span>
-<a name="l00050"></a>00050 
-<a name="l00051"></a>00051 <span class="comment">/* #define SUPPORT_GETPWNAM */</span>
-<a name="l00052"></a>00052 
-<a name="l00053"></a>00053 
-<a name="l00054"></a>00054 <span class="comment">/* Enable/disable support for Big5 and Shift_JIS character encodings */</span>
-<a name="l00055"></a>00055 <span class="preprocessor">#ifndef SUPPORT_ASIAN_ENCODINGS</span>
-<a name="l00056"></a>00056 <span class="preprocessor"></span><span class="preprocessor">#define SUPPORT_ASIAN_ENCODINGS 1</span>
-<a name="l00057"></a>00057 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00058"></a>00058 <span class="preprocessor"></span>
-<a name="l00059"></a>00059 <span class="comment">/* Enable/disable support for UTF-16 character encodings */</span>
-<a name="l00060"></a>00060 <span class="preprocessor">#ifndef SUPPORT_UTF16_ENCODINGS</span>
-<a name="l00061"></a>00061 <span class="preprocessor"></span><span class="preprocessor">#define SUPPORT_UTF16_ENCODINGS 1</span>
-<a name="l00062"></a>00062 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00063"></a>00063 <span class="preprocessor"></span>
-<a name="l00064"></a>00064 <span class="comment">/* Enable/disable support for additional accessibility checks */</span>
-<a name="l00065"></a>00065 <span class="preprocessor">#ifndef SUPPORT_ACCESSIBILITY_CHECKS</span>
-<a name="l00066"></a>00066 <span class="preprocessor"></span><span class="preprocessor">#define SUPPORT_ACCESSIBILITY_CHECKS 1</span>
-<a name="l00067"></a>00067 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00068"></a>00068 <span class="preprocessor"></span>
-<a name="l00069"></a>00069 
-<a name="l00070"></a>00070 <span class="comment">/* Convenience defines for Mac platforms */</span>
-<a name="l00071"></a>00071 
-<a name="l00072"></a>00072 <span class="preprocessor">#if defined(macintosh)</span>
-<a name="l00073"></a>00073 <span class="preprocessor"></span><span class="comment">/* Mac OS 6.x/7.x/8.x/9.x, with or without CarbonLib - MPW or Metrowerks 68K/PPC compilers */</span>
-<a name="l00074"></a>00074 <span class="preprocessor">#define MAC_OS_CLASSIC</span>
-<a name="l00075"></a>00075 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00076"></a>00076 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;Mac OS&quot;</span>
-<a name="l00077"></a>00077 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00078"></a>00078 <span class="preprocessor"></span>
-<a name="l00079"></a>00079 <span class="comment">/* needed for access() */</span>
-<a name="l00080"></a>00080 <span class="preprocessor">#if !defined(_POSIX) &amp;&amp; !defined(NO_ACCESS_SUPPORT)</span>
-<a name="l00081"></a>00081 <span class="preprocessor"></span><span class="preprocessor">#define NO_ACCESS_SUPPORT</span>
-<a name="l00082"></a>00082 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00083"></a>00083 <span class="preprocessor"></span>
-<a name="l00084"></a>00084 <span class="preprocessor">#ifdef SUPPORT_GETPWNAM</span>
-<a name="l00085"></a>00085 <span class="preprocessor"></span><span class="preprocessor">#undef SUPPORT_GETPWNAM</span>
-<a name="l00086"></a>00086 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00087"></a>00087 <span class="preprocessor"></span>
-<a name="l00088"></a>00088 <span class="preprocessor">#elif defined(__APPLE__) &amp;&amp; defined(__MACH__)</span>
-<a name="l00089"></a>00089 <span class="preprocessor"></span><span class="comment">/* Mac OS X (client) 10.x (or server 1.x/10.x) - gcc or Metrowerks MachO compilers */</span>
-<a name="l00090"></a>00090 <span class="preprocessor">#define MAC_OS_X</span>
-<a name="l00091"></a>00091 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00092"></a>00092 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;Mac OS X&quot;</span>
-<a name="l00093"></a>00093 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00094"></a>00094 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00095"></a>00095 <span class="preprocessor"></span>
-<a name="l00096"></a>00096 <span class="preprocessor">#if defined(MAC_OS_CLASSIC) || defined(MAC_OS_X)</span>
-<a name="l00097"></a>00097 <span class="preprocessor"></span><span class="comment">/* Any OS on Mac platform */</span>
-<a name="l00098"></a>00098 <span class="preprocessor">#define MAC_OS</span>
-<a name="l00099"></a>00099 <span class="preprocessor"></span><span class="preprocessor">#define FILENAMES_CASE_SENSITIVE 0</span>
-<a name="l00100"></a>00100 <span class="preprocessor"></span><span class="preprocessor">#define strcasecmp strcmp</span>
-<a name="l00101"></a>00101 <span class="preprocessor"></span><span class="preprocessor">#ifndef DFLT_REPL_CHARENC</span>
-<a name="l00102"></a>00102 <span class="preprocessor"></span><span class="preprocessor">#define DFLT_REPL_CHARENC MACROMAN</span>
-<a name="l00103"></a>00103 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00104"></a>00104 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00105"></a>00105 <span class="preprocessor"></span>
-<a name="l00106"></a>00106 <span class="comment">/* Convenience defines for BSD like platforms */</span>
-<a name="l00107"></a>00107  
-<a name="l00108"></a>00108 <span class="preprocessor">#if defined(__FreeBSD__)</span>
-<a name="l00109"></a>00109 <span class="preprocessor"></span><span class="preprocessor">#define BSD_BASED_OS</span>
-<a name="l00110"></a>00110 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00111"></a>00111 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;FreeBSD&quot;</span>
-<a name="l00112"></a>00112 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00113"></a>00113 <span class="preprocessor"></span>
-<a name="l00114"></a>00114 <span class="preprocessor">#elif defined(__NetBSD__)</span>
-<a name="l00115"></a>00115 <span class="preprocessor"></span><span class="preprocessor">#define BSD_BASED_OS</span>
-<a name="l00116"></a>00116 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00117"></a>00117 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;NetBSD&quot;</span>
-<a name="l00118"></a>00118 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00119"></a>00119 <span class="preprocessor"></span>
-<a name="l00120"></a>00120 <span class="preprocessor">#elif defined(__OpenBSD__)</span>
-<a name="l00121"></a>00121 <span class="preprocessor"></span><span class="preprocessor">#define BSD_BASED_OS</span>
-<a name="l00122"></a>00122 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00123"></a>00123 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;OpenBSD&quot;</span>
-<a name="l00124"></a>00124 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00125"></a>00125 <span class="preprocessor"></span>
-<a name="l00126"></a>00126 <span class="preprocessor">#elif defined(__DragonFly__)</span>
-<a name="l00127"></a>00127 <span class="preprocessor"></span><span class="preprocessor">#define BSD_BASED_OS</span>
-<a name="l00128"></a>00128 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00129"></a>00129 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;DragonFly&quot;</span>
-<a name="l00130"></a>00130 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00131"></a>00131 <span class="preprocessor"></span>
-<a name="l00132"></a>00132 <span class="preprocessor">#elif defined(__MINT__)</span>
-<a name="l00133"></a>00133 <span class="preprocessor"></span><span class="preprocessor">#define BSD_BASED_OS</span>
-<a name="l00134"></a>00134 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00135"></a>00135 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;FreeMiNT&quot;</span>
-<a name="l00136"></a>00136 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00137"></a>00137 <span class="preprocessor"></span>
-<a name="l00138"></a>00138 <span class="preprocessor">#elif defined(__bsdi__)</span>
-<a name="l00139"></a>00139 <span class="preprocessor"></span><span class="preprocessor">#define BSD_BASED_OS</span>
-<a name="l00140"></a>00140 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00141"></a>00141 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;BSD/OS&quot;</span>
-<a name="l00142"></a>00142 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00143"></a>00143 <span class="preprocessor"></span>
-<a name="l00144"></a>00144 <span class="preprocessor">#endif</span>
-<a name="l00145"></a>00145 <span class="preprocessor"></span>
-<a name="l00146"></a>00146 <span class="comment">/* Convenience defines for Windows platforms */</span>
-<a name="l00147"></a>00147  
-<a name="l00148"></a>00148 <span class="preprocessor">#if defined(WINDOWS) || defined(_WIN32)</span>
-<a name="l00149"></a>00149 <span class="preprocessor"></span>
-<a name="l00150"></a>00150 <span class="preprocessor">#define WINDOWS_OS</span>
-<a name="l00151"></a>00151 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00152"></a>00152 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;Windows&quot;</span>
-<a name="l00153"></a>00153 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00154"></a>00154 <span class="preprocessor"></span>
-<a name="l00155"></a>00155 <span class="preprocessor">#if defined(__MWERKS__) || defined(__MSL__)</span>
-<a name="l00156"></a>00156 <span class="preprocessor"></span><span class="comment">/* not available with Metrowerks Standard Library */</span>
-<a name="l00157"></a>00157 
-<a name="l00158"></a>00158 <span class="preprocessor">#ifdef SUPPORT_GETPWNAM</span>
-<a name="l00159"></a>00159 <span class="preprocessor"></span><span class="preprocessor">#undef SUPPORT_GETPWNAM</span>
-<a name="l00160"></a>00160 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00161"></a>00161 <span class="preprocessor"></span>
-<a name="l00162"></a>00162 <span class="comment">/* needed for setmode() */</span>
-<a name="l00163"></a>00163 <span class="preprocessor">#if !defined(NO_SETMODE_SUPPORT)</span>
-<a name="l00164"></a>00164 <span class="preprocessor"></span><span class="preprocessor">#define NO_SETMODE_SUPPORT</span>
-<a name="l00165"></a>00165 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00166"></a>00166 <span class="preprocessor"></span>
-<a name="l00167"></a>00167 <span class="preprocessor">#define strcasecmp _stricmp</span>
-<a name="l00168"></a>00168 <span class="preprocessor"></span>
-<a name="l00169"></a>00169 <span class="preprocessor">#endif</span>
-<a name="l00170"></a>00170 <span class="preprocessor"></span>
-<a name="l00171"></a>00171 <span class="preprocessor">#if defined(__BORLANDC__)</span>
-<a name="l00172"></a>00172 <span class="preprocessor"></span><span class="preprocessor">#define strcasecmp stricmp</span>
-<a name="l00173"></a>00173 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00174"></a>00174 <span class="preprocessor"></span>
-<a name="l00175"></a>00175 <span class="preprocessor">#define FILENAMES_CASE_SENSITIVE 0</span>
-<a name="l00176"></a>00176 <span class="preprocessor"></span><span class="preprocessor">#define SUPPORT_POSIX_MAPPED_FILES 0</span>
-<a name="l00177"></a>00177 <span class="preprocessor"></span>
-<a name="l00178"></a>00178 <span class="preprocessor">#endif</span>
-<a name="l00179"></a>00179 <span class="preprocessor"></span>
-<a name="l00180"></a>00180 <span class="comment">/* Convenience defines for Linux platforms */</span>
-<a name="l00181"></a>00181  
-<a name="l00182"></a>00182 <span class="preprocessor">#if defined(linux) &amp;&amp; defined(__alpha__)</span>
-<a name="l00183"></a>00183 <span class="preprocessor"></span><span class="comment">/* Linux on Alpha - gcc compiler */</span>
-<a name="l00184"></a>00184 <span class="preprocessor">#define LINUX_OS</span>
-<a name="l00185"></a>00185 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00186"></a>00186 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;Linux/Alpha&quot;</span>
-<a name="l00187"></a>00187 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00188"></a>00188 <span class="preprocessor"></span>
-<a name="l00189"></a>00189 <span class="preprocessor">#elif defined(linux) &amp;&amp; defined(__sparc__)</span>
-<a name="l00190"></a>00190 <span class="preprocessor"></span><span class="comment">/* Linux on Sparc - gcc compiler */</span>
-<a name="l00191"></a>00191 <span class="preprocessor">#define LINUX_OS</span>
-<a name="l00192"></a>00192 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00193"></a>00193 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;Linux/Sparc&quot;</span>
-<a name="l00194"></a>00194 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00195"></a>00195 <span class="preprocessor"></span>
-<a name="l00196"></a>00196 <span class="preprocessor">#elif defined(linux) &amp;&amp; (defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__))</span>
-<a name="l00197"></a>00197 <span class="preprocessor"></span><span class="comment">/* Linux on x86 - gcc compiler */</span>
-<a name="l00198"></a>00198 <span class="preprocessor">#define LINUX_OS</span>
-<a name="l00199"></a>00199 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00200"></a>00200 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;Linux/x86&quot;</span>
-<a name="l00201"></a>00201 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00202"></a>00202 <span class="preprocessor"></span>
-<a name="l00203"></a>00203 <span class="preprocessor">#elif defined(linux) &amp;&amp; defined(__powerpc__)</span>
-<a name="l00204"></a>00204 <span class="preprocessor"></span><span class="comment">/* Linux on PPC - gcc compiler */</span>
-<a name="l00205"></a>00205 <span class="preprocessor">#define LINUX_OS</span>
-<a name="l00206"></a>00206 <span class="preprocessor"></span>
-<a name="l00207"></a>00207 <span class="preprocessor">#if defined(__linux__) &amp;&amp; defined(__powerpc__)</span>
-<a name="l00208"></a>00208 <span class="preprocessor"></span>
-<a name="l00209"></a>00209 <span class="comment">/* #if #system(linux) */</span>
-<a name="l00210"></a>00210 <span class="comment">/* MkLinux on PPC  - gcc (egcs) compiler */</span>
-<a name="l00211"></a>00211 <span class="comment">/* #define MAC_OS_MKLINUX */</span>
-<a name="l00212"></a>00212 <span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00213"></a>00213 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;MkLinux&quot;</span>
-<a name="l00214"></a>00214 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00215"></a>00215 <span class="preprocessor"></span>
-<a name="l00216"></a>00216 <span class="preprocessor">#else</span>
-<a name="l00217"></a>00217 <span class="preprocessor"></span>
-<a name="l00218"></a>00218 <span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00219"></a>00219 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;Linux/PPC&quot;</span>
-<a name="l00220"></a>00220 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00221"></a>00221 <span class="preprocessor"></span>
-<a name="l00222"></a>00222 <span class="preprocessor">#endif</span>
-<a name="l00223"></a>00223 <span class="preprocessor"></span>
-<a name="l00224"></a>00224 <span class="preprocessor">#elif defined(linux) || defined(__linux__)</span>
-<a name="l00225"></a>00225 <span class="preprocessor"></span><span class="comment">/* generic Linux */</span>
-<a name="l00226"></a>00226 <span class="preprocessor">#define LINUX_OS</span>
-<a name="l00227"></a>00227 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00228"></a>00228 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;Linux&quot;</span>
-<a name="l00229"></a>00229 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00230"></a>00230 <span class="preprocessor"></span>
-<a name="l00231"></a>00231 <span class="preprocessor">#endif</span>
-<a name="l00232"></a>00232 <span class="preprocessor"></span>
-<a name="l00233"></a>00233 <span class="comment">/* Convenience defines for Solaris platforms */</span>
-<a name="l00234"></a>00234  
-<a name="l00235"></a>00235 <span class="preprocessor">#if defined(sun)</span>
-<a name="l00236"></a>00236 <span class="preprocessor"></span><span class="preprocessor">#define SOLARIS_OS</span>
-<a name="l00237"></a>00237 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00238"></a>00238 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;Solaris&quot;</span>
-<a name="l00239"></a>00239 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00240"></a>00240 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00241"></a>00241 <span class="preprocessor"></span>
-<a name="l00242"></a>00242 <span class="comment">/* Convenience defines for HPUX + gcc platforms */</span>
-<a name="l00243"></a>00243 
-<a name="l00244"></a>00244 <span class="preprocessor">#if defined(__hpux)</span>
-<a name="l00245"></a>00245 <span class="preprocessor"></span><span class="preprocessor">#define HPUX_OS</span>
-<a name="l00246"></a>00246 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00247"></a>00247 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;HPUX&quot;</span>
-<a name="l00248"></a>00248 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00249"></a>00249 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00250"></a>00250 <span class="preprocessor"></span>
-<a name="l00251"></a>00251 <span class="comment">/* Convenience defines for RISCOS + gcc platforms */</span>
-<a name="l00252"></a>00252 
-<a name="l00253"></a>00253 <span class="preprocessor">#if defined(__riscos__)</span>
-<a name="l00254"></a>00254 <span class="preprocessor"></span><span class="preprocessor">#define RISC_OS</span>
-<a name="l00255"></a>00255 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00256"></a>00256 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;RISC OS&quot;</span>
-<a name="l00257"></a>00257 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00258"></a>00258 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00259"></a>00259 <span class="preprocessor"></span>
-<a name="l00260"></a>00260 <span class="comment">/* Convenience defines for OS/2 + icc/gcc platforms */</span>
-<a name="l00261"></a>00261 
-<a name="l00262"></a>00262 <span class="preprocessor">#if defined(__OS2__) || defined(__EMX__)</span>
-<a name="l00263"></a>00263 <span class="preprocessor"></span><span class="preprocessor">#define OS2_OS</span>
-<a name="l00264"></a>00264 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00265"></a>00265 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;OS/2&quot;</span>
-<a name="l00266"></a>00266 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00267"></a>00267 <span class="preprocessor"></span><span class="preprocessor">#define FILENAMES_CASE_SENSITIVE 0</span>
-<a name="l00268"></a>00268 <span class="preprocessor"></span><span class="preprocessor">#define strcasecmp stricmp</span>
-<a name="l00269"></a>00269 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00270"></a>00270 <span class="preprocessor"></span>
-<a name="l00271"></a>00271 <span class="comment">/* Convenience defines for IRIX */</span>
-<a name="l00272"></a>00272 
-<a name="l00273"></a>00273 <span class="preprocessor">#if defined(__sgi)</span>
-<a name="l00274"></a>00274 <span class="preprocessor"></span><span class="preprocessor">#define IRIX_OS</span>
-<a name="l00275"></a>00275 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00276"></a>00276 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;SGI IRIX&quot;</span>
-<a name="l00277"></a>00277 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00278"></a>00278 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00279"></a>00279 <span class="preprocessor"></span>
-<a name="l00280"></a>00280 <span class="comment">/* Convenience defines for AIX */</span>
-<a name="l00281"></a>00281 
-<a name="l00282"></a>00282 <span class="preprocessor">#if defined(_AIX)</span>
-<a name="l00283"></a>00283 <span class="preprocessor"></span><span class="preprocessor">#define AIX_OS</span>
-<a name="l00284"></a>00284 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00285"></a>00285 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;IBM AIX&quot;</span>
-<a name="l00286"></a>00286 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00287"></a>00287 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00288"></a>00288 <span class="preprocessor"></span>
-<a name="l00289"></a>00289 
-<a name="l00290"></a>00290 <span class="comment">/* Convenience defines for BeOS platforms */</span>
-<a name="l00291"></a>00291 
-<a name="l00292"></a>00292 <span class="preprocessor">#if defined(__BEOS__)</span>
-<a name="l00293"></a>00293 <span class="preprocessor"></span><span class="preprocessor">#define BE_OS</span>
-<a name="l00294"></a>00294 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00295"></a>00295 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;BeOS&quot;</span>
-<a name="l00296"></a>00296 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00297"></a>00297 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00298"></a>00298 <span class="preprocessor"></span>
-<a name="l00299"></a>00299 <span class="comment">/* Convenience defines for Cygwin platforms */</span>
-<a name="l00300"></a>00300 
-<a name="l00301"></a>00301 <span class="preprocessor">#if defined(__CYGWIN__)</span>
-<a name="l00302"></a>00302 <span class="preprocessor"></span><span class="preprocessor">#define CYGWIN_OS</span>
-<a name="l00303"></a>00303 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00304"></a>00304 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;Cygwin&quot;</span>
-<a name="l00305"></a>00305 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00306"></a>00306 <span class="preprocessor"></span><span class="preprocessor">#define FILENAMES_CASE_SENSITIVE 0</span>
-<a name="l00307"></a>00307 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00308"></a>00308 <span class="preprocessor"></span>
-<a name="l00309"></a>00309 <span class="comment">/* Convenience defines for OpenVMS */</span>
-<a name="l00310"></a>00310 
-<a name="l00311"></a>00311 <span class="preprocessor">#if defined(__VMS)</span>
-<a name="l00312"></a>00312 <span class="preprocessor"></span><span class="preprocessor">#define OPENVMS_OS</span>
-<a name="l00313"></a>00313 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00314"></a>00314 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;OpenVMS&quot;</span>
-<a name="l00315"></a>00315 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00316"></a>00316 <span class="preprocessor"></span><span class="preprocessor">#define FILENAMES_CASE_SENSITIVE 0</span>
-<a name="l00317"></a>00317 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00318"></a>00318 <span class="preprocessor"></span>
-<a name="l00319"></a>00319 <span class="comment">/* Convenience defines for DEC Alpha OSF + gcc platforms */</span>
-<a name="l00320"></a>00320 
-<a name="l00321"></a>00321 <span class="preprocessor">#if defined(__osf__)</span>
-<a name="l00322"></a>00322 <span class="preprocessor"></span><span class="preprocessor">#define OSF_OS</span>
-<a name="l00323"></a>00323 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00324"></a>00324 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;DEC Alpha OSF&quot;</span>
-<a name="l00325"></a>00325 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00326"></a>00326 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00327"></a>00327 <span class="preprocessor"></span>
-<a name="l00328"></a>00328 <span class="comment">/* Convenience defines for ARM platforms */</span>
-<a name="l00329"></a>00329 
-<a name="l00330"></a>00330 <span class="preprocessor">#if defined(__arm)</span>
-<a name="l00331"></a>00331 <span class="preprocessor"></span><span class="preprocessor">#define ARM_OS</span>
-<a name="l00332"></a>00332 <span class="preprocessor"></span>
-<a name="l00333"></a>00333 <span class="preprocessor">#if defined(forARM) &amp;&amp; defined(__NEWTON_H)</span>
-<a name="l00334"></a>00334 <span class="preprocessor"></span>
-<a name="l00335"></a>00335 <span class="comment">/* Using Newton C++ Tools ARMCpp compiler */</span>
-<a name="l00336"></a>00336 <span class="preprocessor">#define NEWTON_OS</span>
-<a name="l00337"></a>00337 <span class="preprocessor"></span><span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00338"></a>00338 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;Newton&quot;</span>
-<a name="l00339"></a>00339 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00340"></a>00340 <span class="preprocessor"></span>
-<a name="l00341"></a>00341 <span class="preprocessor">#else</span>
-<a name="l00342"></a>00342 <span class="preprocessor"></span>
-<a name="l00343"></a>00343 <span class="preprocessor">#ifndef PLATFORM_NAME</span>
-<a name="l00344"></a>00344 <span class="preprocessor"></span><span class="preprocessor">#define PLATFORM_NAME &quot;ARM&quot;</span>
-<a name="l00345"></a>00345 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00346"></a>00346 <span class="preprocessor"></span>
-<a name="l00347"></a>00347 <span class="preprocessor">#endif</span>
-<a name="l00348"></a>00348 <span class="preprocessor"></span>
-<a name="l00349"></a>00349 <span class="preprocessor">#endif</span>
-<a name="l00350"></a>00350 <span class="preprocessor"></span>
-<a name="l00351"></a>00351 <span class="preprocessor">#include &lt;ctype.h&gt;</span>
-<a name="l00352"></a>00352 <span class="preprocessor">#include &lt;stdio.h&gt;</span>
-<a name="l00353"></a>00353 <span class="preprocessor">#include &lt;setjmp.h&gt;</span>  <span class="comment">/* for longjmp on error exit */</span>
-<a name="l00354"></a>00354 <span class="preprocessor">#include &lt;stdlib.h&gt;</span>
-<a name="l00355"></a>00355 <span class="preprocessor">#include &lt;stdarg.h&gt;</span>  <span class="comment">/* may need &lt;varargs.h&gt; for Unix V */</span>
-<a name="l00356"></a>00356 <span class="preprocessor">#include &lt;string.h&gt;</span>
-<a name="l00357"></a>00357 <span class="preprocessor">#include &lt;assert.h&gt;</span>
-<a name="l00358"></a>00358 
-<a name="l00359"></a>00359 <span class="preprocessor">#ifdef NEEDS_MALLOC_H</span>
-<a name="l00360"></a>00360 <span class="preprocessor"></span><span class="preprocessor">#include &lt;malloc.h&gt;</span>
-<a name="l00361"></a>00361 <span class="preprocessor">#endif</span>
-<a name="l00362"></a>00362 <span class="preprocessor"></span>
-<a name="l00363"></a>00363 <span class="preprocessor">#ifdef SUPPORT_GETPWNAM</span>
-<a name="l00364"></a>00364 <span class="preprocessor"></span><span class="preprocessor">#include &lt;pwd.h&gt;</span>
-<a name="l00365"></a>00365 <span class="preprocessor">#endif</span>
-<a name="l00366"></a>00366 <span class="preprocessor"></span>
-<a name="l00367"></a>00367 <span class="preprocessor">#ifdef NEEDS_UNISTD_H</span>
-<a name="l00368"></a>00368 <span class="preprocessor"></span><span class="preprocessor">#include &lt;unistd.h&gt;</span>  <span class="comment">/* needed for unlink on some Unix systems */</span>
-<a name="l00369"></a>00369 <span class="preprocessor">#endif</span>
-<a name="l00370"></a>00370 <span class="preprocessor"></span>
-<a name="l00371"></a>00371 <span class="comment">/* This can be set at compile time.  Usually Windows,</span>
-<a name="l00372"></a>00372 <span class="comment">** except for Macintosh builds.</span>
-<a name="l00373"></a>00373 <span class="comment">*/</span>
-<a name="l00374"></a>00374 <span class="preprocessor">#ifndef DFLT_REPL_CHARENC</span>
-<a name="l00375"></a>00375 <span class="preprocessor"></span><span class="preprocessor">#define DFLT_REPL_CHARENC WIN1252</span>
-<a name="l00376"></a>00376 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00377"></a>00377 <span class="preprocessor"></span>
-<a name="l00378"></a>00378 <span class="comment">/* By default, use case-sensitive filename comparison.</span>
-<a name="l00379"></a>00379 <span class="comment">*/</span>
-<a name="l00380"></a>00380 <span class="preprocessor">#ifndef FILENAMES_CASE_SENSITIVE</span>
-<a name="l00381"></a>00381 <span class="preprocessor"></span><span class="preprocessor">#define FILENAMES_CASE_SENSITIVE 1</span>
-<a name="l00382"></a>00382 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00383"></a>00383 <span class="preprocessor"></span>
-<a name="l00384"></a>00384 
-<a name="l00385"></a>00385 <span class="comment">/*</span>
-<a name="l00386"></a>00386 <span class="comment">  Tidy preserves the last modified time for the files it</span>
-<a name="l00387"></a>00387 <span class="comment">  cleans up.</span>
-<a name="l00388"></a>00388 <span class="comment">*/</span>
-<a name="l00389"></a>00389 
-<a name="l00390"></a>00390 <span class="comment">/*</span>
-<a name="l00391"></a>00391 <span class="comment">  If your platform doesn&#39;t support &lt;utime.h&gt; and the</span>
-<a name="l00392"></a>00392 <span class="comment">  utime() function, or &lt;sys/futime&gt; and the futime()</span>
-<a name="l00393"></a>00393 <span class="comment">  function then set PRESERVE_FILE_TIMES to 0.</span>
-<a name="l00394"></a>00394 <span class="comment">  </span>
-<a name="l00395"></a>00395 <span class="comment">  If your platform doesn&#39;t support &lt;sys/utime.h&gt; and the</span>
-<a name="l00396"></a>00396 <span class="comment">  futime() function, then set HAS_FUTIME to 0.</span>
-<a name="l00397"></a>00397 <span class="comment">  </span>
-<a name="l00398"></a>00398 <span class="comment">  If your platform supports &lt;utime.h&gt; and the</span>
-<a name="l00399"></a>00399 <span class="comment">  utime() function requires the file to be</span>
-<a name="l00400"></a>00400 <span class="comment">  closed first, then set UTIME_NEEDS_CLOSED_FILE to 1.</span>
-<a name="l00401"></a>00401 <span class="comment">*/</span>
-<a name="l00402"></a>00402 
-<a name="l00403"></a>00403 <span class="comment">/* Keep old PRESERVEFILETIMES define for compatibility */</span>
-<a name="l00404"></a>00404 <span class="preprocessor">#ifdef PRESERVEFILETIMES</span>
-<a name="l00405"></a>00405 <span class="preprocessor"></span><span class="preprocessor">#undef PRESERVE_FILE_TIMES</span>
-<a name="l00406"></a>00406 <span class="preprocessor"></span><span class="preprocessor">#define PRESERVE_FILE_TIMES PRESERVEFILETIMES</span>
-<a name="l00407"></a>00407 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00408"></a>00408 <span class="preprocessor"></span>
-<a name="l00409"></a>00409 <span class="preprocessor">#ifndef PRESERVE_FILE_TIMES</span>
-<a name="l00410"></a>00410 <span class="preprocessor"></span><span class="preprocessor">#if defined(RISC_OS) || defined(OPENVMS_OS) || defined(OSF_OS)</span>
-<a name="l00411"></a>00411 <span class="preprocessor"></span><span class="preprocessor">#define PRESERVE_FILE_TIMES 0</span>
-<a name="l00412"></a>00412 <span class="preprocessor"></span><span class="preprocessor">#else</span>
-<a name="l00413"></a>00413 <span class="preprocessor"></span><span class="preprocessor">#define PRESERVE_FILE_TIMES 1</span>
-<a name="l00414"></a>00414 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00415"></a>00415 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00416"></a>00416 <span class="preprocessor"></span>
-<a name="l00417"></a>00417 <span class="preprocessor">#if PRESERVE_FILE_TIMES</span>
-<a name="l00418"></a>00418 <span class="preprocessor"></span>
-<a name="l00419"></a>00419 <span class="preprocessor">#ifndef HAS_FUTIME</span>
-<a name="l00420"></a>00420 <span class="preprocessor"></span><span class="preprocessor">#if defined(CYGWIN_OS) || defined(BE_OS) || defined(OS2_OS) || defined(HPUX_OS) || defined(SOLARIS_OS) || defined(LINUX_OS) || defined(BSD_BASED_OS) || defined(MAC_OS) || defined(__MSL__) || defined(IRIX_OS) || defined(AIX_OS) || defined(__BORLANDC__)</span>
-<a name="l00421"></a>00421 <span class="preprocessor"></span><span class="preprocessor">#define HAS_FUTIME 0</span>
-<a name="l00422"></a>00422 <span class="preprocessor"></span><span class="preprocessor">#else</span>
-<a name="l00423"></a>00423 <span class="preprocessor"></span><span class="preprocessor">#define HAS_FUTIME 1</span>
-<a name="l00424"></a>00424 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00425"></a>00425 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00426"></a>00426 <span class="preprocessor"></span>
-<a name="l00427"></a>00427 <span class="preprocessor">#ifndef UTIME_NEEDS_CLOSED_FILE</span>
-<a name="l00428"></a>00428 <span class="preprocessor"></span><span class="preprocessor">#if defined(SOLARIS_OS) || defined(BSD_BASED_OS) || defined(MAC_OS) || defined(__MSL__) || defined(LINUX_OS)</span>
-<a name="l00429"></a>00429 <span class="preprocessor"></span><span class="preprocessor">#define UTIME_NEEDS_CLOSED_FILE 1</span>
-<a name="l00430"></a>00430 <span class="preprocessor"></span><span class="preprocessor">#else</span>
-<a name="l00431"></a>00431 <span class="preprocessor"></span><span class="preprocessor">#define UTIME_NEEDS_CLOSED_FILE 0</span>
-<a name="l00432"></a>00432 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00433"></a>00433 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00434"></a>00434 <span class="preprocessor"></span>
-<a name="l00435"></a>00435 <span class="preprocessor">#if defined(MAC_OS_X) || (!defined(MAC_OS_CLASSIC) &amp;&amp; !defined(__MSL__))</span>
-<a name="l00436"></a>00436 <span class="preprocessor"></span><span class="preprocessor">#include &lt;sys/types.h&gt;</span> 
-<a name="l00437"></a>00437 <span class="preprocessor">#include &lt;sys/stat.h&gt;</span>
-<a name="l00438"></a>00438 <span class="preprocessor">#else</span>
-<a name="l00439"></a>00439 <span class="preprocessor"></span><span class="preprocessor">#include &lt;stat.h&gt;</span>
-<a name="l00440"></a>00440 <span class="preprocessor">#endif</span>
-<a name="l00441"></a>00441 <span class="preprocessor"></span>
-<a name="l00442"></a>00442 <span class="preprocessor">#if HAS_FUTIME</span>
-<a name="l00443"></a>00443 <span class="preprocessor"></span><span class="preprocessor">#include &lt;sys/utime.h&gt;</span>
-<a name="l00444"></a>00444 <span class="preprocessor">#else</span>
-<a name="l00445"></a>00445 <span class="preprocessor"></span><span class="preprocessor">#include &lt;utime.h&gt;</span>
-<a name="l00446"></a>00446 <span class="preprocessor">#endif </span><span class="comment">/* HASFUTIME */</span>
-<a name="l00447"></a>00447 
-<a name="l00448"></a>00448 <span class="comment">/*</span>
-<a name="l00449"></a>00449 <span class="comment">  MS Windows needs _ prefix for Unix file functions.</span>
-<a name="l00450"></a>00450 <span class="comment">  Not required by Metrowerks Standard Library (MSL).</span>
-<a name="l00451"></a>00451 <span class="comment">  </span>
-<a name="l00452"></a>00452 <span class="comment">  Tidy uses following for preserving the last modified time.</span>
-<a name="l00453"></a>00453 <span class="comment"></span>
-<a name="l00454"></a>00454 <span class="comment">  WINDOWS automatically set by Win16 compilers.</span>
-<a name="l00455"></a>00455 <span class="comment">  _WIN32 automatically set by Win32 compilers.</span>
-<a name="l00456"></a>00456 <span class="comment">*/</span>
-<a name="l00457"></a>00457 <span class="preprocessor">#if defined(_WIN32) &amp;&amp; !defined(__MSL__) &amp;&amp; !defined(__BORLANDC__)</span>
-<a name="l00458"></a>00458 <span class="preprocessor"></span>
-<a name="l00459"></a>00459 <span class="preprocessor">#define futime _futime</span>
-<a name="l00460"></a>00460 <span class="preprocessor"></span><span class="preprocessor">#define fstat _fstat</span>
-<a name="l00461"></a>00461 <span class="preprocessor"></span><span class="preprocessor">#define utimbuf _utimbuf </span><span class="comment">/* Windows seems to want utimbuf */</span>
-<a name="l00462"></a>00462 <span class="preprocessor">#define stat _stat</span>
-<a name="l00463"></a>00463 <span class="preprocessor"></span><span class="preprocessor">#define utime _utime</span>
-<a name="l00464"></a>00464 <span class="preprocessor"></span><span class="preprocessor">#define vsnprintf _vsnprintf</span>
-<a name="l00465"></a>00465 <span class="preprocessor"></span><span class="preprocessor">#endif </span><span class="comment">/* _WIN32 */</span>
-<a name="l00466"></a>00466 
-<a name="l00467"></a>00467 <span class="preprocessor">#endif </span><span class="comment">/* PRESERVE_FILE_TIMES */</span>
-<a name="l00468"></a>00468 
-<a name="l00469"></a>00469 <span class="comment">/*</span>
-<a name="l00470"></a>00470 <span class="comment">  MS Windows needs _ prefix for Unix file functions.</span>
-<a name="l00471"></a>00471 <span class="comment">  Not required by Metrowerks Standard Library (MSL).</span>
-<a name="l00472"></a>00472 <span class="comment">  </span>
-<a name="l00473"></a>00473 <span class="comment">  WINDOWS automatically set by Win16 compilers.</span>
-<a name="l00474"></a>00474 <span class="comment">  _WIN32 automatically set by Win32 compilers.</span>
-<a name="l00475"></a>00475 <span class="comment">*/</span>
-<a name="l00476"></a>00476 <span class="preprocessor">#if defined(_WIN32) &amp;&amp; !defined(__MSL__) &amp;&amp; !defined(__BORLANDC__)</span>
-<a name="l00477"></a>00477 <span class="preprocessor"></span>
-<a name="l00478"></a>00478 <span class="preprocessor">#ifndef __WATCOMC__</span>
-<a name="l00479"></a>00479 <span class="preprocessor"></span><span class="preprocessor">#define fileno _fileno</span>
-<a name="l00480"></a>00480 <span class="preprocessor"></span><span class="preprocessor">#define setmode _setmode</span>
-<a name="l00481"></a>00481 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00482"></a>00482 <span class="preprocessor"></span>
-<a name="l00483"></a>00483 <span class="preprocessor">#define access _access</span>
-<a name="l00484"></a>00484 <span class="preprocessor"></span><span class="preprocessor">#define strcasecmp _stricmp</span>
-<a name="l00485"></a>00485 <span class="preprocessor"></span>
-<a name="l00486"></a>00486 <span class="preprocessor">#if _MSC_VER &gt; 1000</span>
-<a name="l00487"></a>00487 <span class="preprocessor"></span><span class="preprocessor">#pragma warning( disable : 4189 ) </span><span class="comment">/* local variable is initialized but not referenced */</span>
-<a name="l00488"></a>00488 <span class="preprocessor">#pragma warning( disable : 4100 ) </span><span class="comment">/* unreferenced formal parameter */</span>
-<a name="l00489"></a>00489 <span class="preprocessor">#pragma warning( disable : 4706 ) </span><span class="comment">/* assignment within conditional expression */</span>
-<a name="l00490"></a>00490 <span class="preprocessor">#endif</span>
-<a name="l00491"></a>00491 <span class="preprocessor"></span>
-<a name="l00492"></a>00492 <span class="preprocessor">#if _MSC_VER &gt; 1300</span>
-<a name="l00493"></a>00493 <span class="preprocessor"></span><span class="preprocessor">#pragma warning( disable : 4996 ) </span><span class="comment">/* disable depreciation warning */</span>
-<a name="l00494"></a>00494 <span class="preprocessor">#endif</span>
-<a name="l00495"></a>00495 <span class="preprocessor"></span>
-<a name="l00496"></a>00496 <span class="preprocessor">#endif </span><span class="comment">/* _WIN32 */</span>
-<a name="l00497"></a>00497 
-<a name="l00498"></a>00498 <span class="preprocessor">#if defined(_WIN32)</span>
-<a name="l00499"></a>00499 <span class="preprocessor"></span>
-<a name="l00500"></a>00500 <span class="preprocessor">#if (defined(_USRDLL) || defined(_WINDLL)) &amp;&amp; !defined(TIDY_EXPORT)</span>
-<a name="l00501"></a>00501 <span class="preprocessor"></span><span class="preprocessor">#define TIDY_EXPORT __declspec( dllexport ) </span>
-<a name="l00502"></a>00502 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00503"></a>00503 <span class="preprocessor"></span>
-<a name="l00504"></a>00504 <span class="preprocessor">#ifndef TIDY_CALL</span>
-<a name="l00505"></a>00505 <span class="preprocessor"></span><span class="preprocessor">#ifdef _WIN64</span>
-<a name="l00506"></a>00506 <span class="preprocessor"></span><span class="preprocessor">#  define TIDY_CALL __fastcall</span>
-<a name="l00507"></a>00507 <span class="preprocessor"></span><span class="preprocessor">#else</span>
-<a name="l00508"></a>00508 <span class="preprocessor"></span><span class="preprocessor">#  define TIDY_CALL __stdcall</span>
-<a name="l00509"></a>00509 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00510"></a>00510 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00511"></a>00511 <span class="preprocessor"></span>
-<a name="l00512"></a>00512 <span class="preprocessor">#endif </span><span class="comment">/* _WIN32 */</span>
-<a name="l00513"></a>00513 
-<a name="l00514"></a>00514 <span class="comment">/* hack for gnu sys/types.h file which defines uint and ulong */</span>
-<a name="l00515"></a>00515 
-<a name="l00516"></a>00516 <span class="preprocessor">#if defined(BE_OS) || defined(SOLARIS_OS) || defined(BSD_BASED_OS) || defined(OSF_OS) || defined(IRIX_OS) || defined(AIX_OS)</span>
-<a name="l00517"></a>00517 <span class="preprocessor"></span><span class="preprocessor">#include &lt;sys/types.h&gt;</span>
-<a name="l00518"></a>00518 <span class="preprocessor">#endif</span>
-<a name="l00519"></a>00519 <span class="preprocessor"></span><span class="preprocessor">#if !defined(HPUX_OS) &amp;&amp; !defined(CYGWIN_OS) &amp;&amp; !defined(MAC_OS_X) &amp;&amp; !defined(BE_OS) &amp;&amp; !defined(SOLARIS_OS) &amp;&amp; !defined(BSD_BASED_OS) &amp;&amp; !defined(OSF_OS) &amp;&amp; !defined(IRIX_OS) &amp;&amp; !defined(AIX_OS) &amp;&amp; !defined(LINUX_OS)</span>
-<a name="l00520"></a>00520 <span class="preprocessor"></span><span class="preprocessor"># undef uint</span>
-<a name="l00521"></a>00521 <span class="preprocessor"></span><span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> uint;
-<a name="l00522"></a>00522 <span class="preprocessor">#endif</span>
-<a name="l00523"></a>00523 <span class="preprocessor"></span><span class="preprocessor">#if defined(HPUX_OS) || defined(CYGWIN_OS) || defined(MAC_OS) || defined(BSD_BASED_OS) || defined(_WIN32)</span>
-<a name="l00524"></a>00524 <span class="preprocessor"></span><span class="preprocessor"># undef ulong</span>
-<a name="l00525"></a>00525 <span class="preprocessor"></span><span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> ulong;
-<a name="l00526"></a>00526 <span class="preprocessor">#endif</span>
-<a name="l00527"></a>00527 <span class="preprocessor"></span>
-<a name="l00528"></a>00528 <span class="comment">/*</span>
-<a name="l00529"></a>00529 <span class="comment">With GCC 4,  __attribute__ ((visibility(&quot;default&quot;))) can be used along compiling with tidylib </span>
-<a name="l00530"></a>00530 <span class="comment">with &quot;-fvisibility=hidden&quot;. See http://gcc.gnu.org/wiki/Visibility and build/gmake/Makefile.</span>
-<a name="l00531"></a>00531 <span class="comment">*/</span>
-<a name="l00532"></a>00532 <span class="comment">/*</span>
-<a name="l00533"></a>00533 <span class="comment">#if defined(__GNUC__) &amp;&amp; __GNUC__ &gt;= 4</span>
-<a name="l00534"></a>00534 <span class="comment">#define TIDY_EXPORT __attribute__ ((visibility(&quot;default&quot;)))</span>
-<a name="l00535"></a>00535 <span class="comment">#endif</span>
-<a name="l00536"></a>00536 <span class="comment">*/</span>
-<a name="l00537"></a>00537 
-<a name="l00538"></a>00538 <span class="preprocessor">#ifndef TIDY_EXPORT </span><span class="comment">/* Define it away for most builds */</span>
-<a name="l00539"></a>00539 <span class="preprocessor">#define TIDY_EXPORT </span>
-<a name="l00540"></a>00540 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00541"></a>00541 <span class="preprocessor"></span>
-<a name="l00542"></a>00542 <span class="preprocessor">#ifndef TIDY_STRUCT</span>
-<a name="l00543"></a>00543 <span class="preprocessor"></span><span class="preprocessor">#define TIDY_STRUCT</span>
-<a name="l00544"></a>00544 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00545"></a>00545 <span class="preprocessor"></span>
-<a name="l00546"></a>00546 <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> byte;
-<a name="l00547"></a>00547 
-<a name="l00548"></a>00548 <span class="keyword">typedef</span> uint tchar;         <span class="comment">/* single, full character */</span>
-<a name="l00549"></a>00549 <span class="keyword">typedef</span> <span class="keywordtype">char</span> tmbchar;       <span class="comment">/* single, possibly partial character */</span>
-<a name="l00550"></a>00550 <span class="preprocessor">#ifndef TMBSTR_DEFINED</span>
-<a name="l00551"></a>00551 <span class="preprocessor"></span><span class="keyword">typedef</span> tmbchar* tmbstr;    <span class="comment">/* pointer to buffer of possibly partial chars */</span>
-<a name="l00552"></a>00552 <span class="keyword">typedef</span> <span class="keyword">const</span> tmbchar* ctmbstr; <span class="comment">/* Ditto, but const */</span>
-<a name="l00553"></a>00553 <span class="preprocessor">#define NULLSTR (tmbstr)&quot;&quot;</span>
-<a name="l00554"></a>00554 <span class="preprocessor"></span><span class="preprocessor">#define TMBSTR_DEFINED</span>
-<a name="l00555"></a>00555 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00556"></a>00556 <span class="preprocessor"></span>
-<a name="l00557"></a>00557 <span class="preprocessor">#ifndef TIDY_CALL</span>
-<a name="l00558"></a>00558 <span class="preprocessor"></span><span class="preprocessor">#define TIDY_CALL</span>
-<a name="l00559"></a>00559 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00560"></a>00560 <span class="preprocessor"></span>
-<a name="l00561"></a>00561 <span class="preprocessor">#if defined(__GNUC__) || defined(__INTEL_COMPILER)</span>
-<a name="l00562"></a>00562 <span class="preprocessor"></span><span class="preprocessor"># define ARG_UNUSED(x) x __attribute__((unused))</span>
-<a name="l00563"></a>00563 <span class="preprocessor"></span><span class="preprocessor">#else</span>
-<a name="l00564"></a>00564 <span class="preprocessor"></span><span class="preprocessor"># define ARG_UNUSED(x) x</span>
-<a name="l00565"></a>00565 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00566"></a>00566 <span class="preprocessor"></span>
-<a name="l00567"></a>00567 <span class="comment">/* HAS_VSNPRINTF triggers the use of &quot;vsnprintf&quot;, which is safe related to</span>
-<a name="l00568"></a>00568 <span class="comment">   buffer overflow. Therefore, we make it the default unless HAS_VSNPRINTF</span>
-<a name="l00569"></a>00569 <span class="comment">   has been defined. */</span>
-<a name="l00570"></a>00570 <span class="preprocessor">#ifndef HAS_VSNPRINTF</span>
-<a name="l00571"></a>00571 <span class="preprocessor"></span><span class="preprocessor"># define HAS_VSNPRINTF 1</span>
-<a name="l00572"></a>00572 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00573"></a>00573 <span class="preprocessor"></span>
-<a name="l00574"></a>00574 <span class="preprocessor">#ifndef SUPPORT_POSIX_MAPPED_FILES</span>
-<a name="l00575"></a>00575 <span class="preprocessor"></span><span class="preprocessor"># define SUPPORT_POSIX_MAPPED_FILES 1</span>
-<a name="l00576"></a>00576 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00577"></a>00577 <span class="preprocessor"></span>
-<a name="l00578"></a>00578 <span class="comment">/*</span>
-<a name="l00579"></a>00579 <span class="comment">  bool is a reserved word in some but</span>
-<a name="l00580"></a>00580 <span class="comment">  not all C++ compilers depending on age</span>
-<a name="l00581"></a>00581 <span class="comment">  work around is to avoid bool altogether</span>
-<a name="l00582"></a>00582 <span class="comment">  by introducing a new enum called Bool</span>
-<a name="l00583"></a>00583 <span class="comment">*/</span>
-<a name="l00584"></a>00584 <span class="comment">/* We could use the C99 definition where supported</span>
-<a name="l00585"></a>00585 <span class="comment">typedef _Bool Bool;</span>
-<a name="l00586"></a>00586 <span class="comment">#define no (_Bool)0</span>
-<a name="l00587"></a>00587 <span class="comment">#define yes (_Bool)1</span>
-<a name="l00588"></a>00588 <span class="comment">*/</span>
-<a name="l00589"></a>00589 <span class="keyword">typedef</span> <span class="keyword">enum</span>
-<a name="l00590"></a>00590 {
-<a name="l00591"></a>00591    no,
-<a name="l00592"></a>00592    yes
-<a name="l00593"></a>00593 } Bool;
-<a name="l00594"></a>00594 
-<a name="l00595"></a>00595 <span class="comment">/* for NULL pointers </span>
-<a name="l00596"></a>00596 <span class="comment">#define null ((const void*)0)</span>
-<a name="l00597"></a>00597 <span class="comment">extern void* null;</span>
-<a name="l00598"></a>00598 <span class="comment">*/</span>
-<a name="l00599"></a>00599 
-<a name="l00600"></a>00600 <span class="preprocessor">#if defined(DMALLOC)</span>
-<a name="l00601"></a>00601 <span class="preprocessor"></span><span class="preprocessor">#include &quot;dmalloc.h&quot;</span>
-<a name="l00602"></a>00602 <span class="preprocessor">#endif</span>
-<a name="l00603"></a>00603 <span class="preprocessor"></span>
-<a name="l00604"></a>00604 <span class="comment">/* Opaque data structure.</span>
-<a name="l00605"></a>00605 <span class="comment">*  Cast to implementation type struct within lib.</span>
-<a name="l00606"></a>00606 <span class="comment">*  This will reduce inter-dependencies/conflicts w/ application code.</span>
-<a name="l00607"></a>00607 <span class="comment">*/</span>
-<a name="l00608"></a>00608 <span class="preprocessor">#if 1</span>
-<a name="l00609"></a>00609 <span class="preprocessor"></span><span class="preprocessor">#define opaque_type( typenam )\</span>
-<a name="l00610"></a>00610 <span class="preprocessor">struct _##typenam { int _opaque; };\</span>
-<a name="l00611"></a>00611 <span class="preprocessor">typedef struct _##typenam const * typenam</span>
-<a name="l00612"></a>00612 <span class="preprocessor"></span><span class="preprocessor">#else</span>
-<a name="l00613"></a>00613 <span class="preprocessor"></span><span class="preprocessor">#define opaque_type(typenam) typedef const void* typenam</span>
-<a name="l00614"></a>00614 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00615"></a>00615 <span class="preprocessor"></span>
-<a name="l00616"></a>00616 <span class="comment">/* Opaque data structure used to pass back</span>
-<a name="l00617"></a>00617 <span class="comment">** and forth to keep current position in a</span>
-<a name="l00618"></a>00618 <span class="comment">** list or other collection.</span>
-<a name="l00619"></a>00619 <span class="comment">*/</span>
-<a name="l00620"></a>00620 opaque_type( TidyIterator );
-<a name="l00621"></a>00621 
-<a name="l00622"></a>00622 <span class="preprocessor">#ifdef __cplusplus</span>
-<a name="l00623"></a>00623 <span class="preprocessor"></span>} <span class="comment">/* extern &quot;C&quot; */</span>
-<a name="l00624"></a>00624 <span class="preprocessor">#endif</span>
-<a name="l00625"></a>00625 <span class="preprocessor"></span>
-<a name="l00626"></a>00626 <span class="preprocessor">#endif </span><span class="comment">/* __TIDY_PLATFORM_H__ */</span>
-<a name="l00627"></a>00627 
-<a name="l00628"></a>00628 
-<a name="l00629"></a>00629 <span class="comment">/*</span>
-<a name="l00630"></a>00630 <span class="comment"> * local variables:</span>
-<a name="l00631"></a>00631 <span class="comment"> * mode: c</span>
-<a name="l00632"></a>00632 <span class="comment"> * indent-tabs-mode: nil</span>
-<a name="l00633"></a>00633 <span class="comment"> * c-basic-offset: 4</span>
-<a name="l00634"></a>00634 <span class="comment"> * eval: (c-set-offset &#39;substatement-open 0)</span>
-<a name="l00635"></a>00635 <span class="comment"> * end:</span>
-<a name="l00636"></a>00636 <span class="comment"> */</span>
-</pre></div></div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><b>platform.h</b>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/resize.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/resize.js
deleted file mode 100644
index 04fa95c..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/resize.js
+++ /dev/null
@@ -1,81 +0,0 @@
-var cookie_namespace = 'doxygen'; 
-var sidenav,navtree,content,header;
-
-function readCookie(cookie) 
-{
-  var myCookie = cookie_namespace+"_"+cookie+"=";
-  if (document.cookie) 
-  {
-    var index = document.cookie.indexOf(myCookie);
-    if (index != -1) 
-    {
-      var valStart = index + myCookie.length;
-      var valEnd = document.cookie.indexOf(";", valStart);
-      if (valEnd == -1) 
-      {
-        valEnd = document.cookie.length;
-      }
-      var val = document.cookie.substring(valStart, valEnd);
-      return val;
-    }
-  }
-  return 0;
-}
-
-function writeCookie(cookie, val, expiration) 
-{
-  if (val==undefined) return;
-  if (expiration == null) 
-  {
-    var date = new Date();
-    date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
-    expiration = date.toGMTString();
-  }
-  document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; expires=" + expiration+"; path=/";
-}
- 
-function resizeWidth() 
-{
-  var windowWidth = $(window).width() + "px";
-  var sidenavWidth = $(sidenav).width();
-  content.css({marginLeft:parseInt(sidenavWidth)+6+"px"}); //account for 6px-wide handle-bar
-  writeCookie('width',sidenavWidth, null);
-}
-
-function restoreWidth(navWidth)
-{
-  var windowWidth = $(window).width() + "px";
-  content.css({marginLeft:parseInt(navWidth)+6+"px"});
-  sidenav.css({width:navWidth + "px"});
-}
-
-function resizeHeight() 
-{
-  var headerHeight = header.height();
-  var footerHeight = footer.height();
-  var windowHeight = $(window).height() - headerHeight - footerHeight;
-  content.css({height:windowHeight + "px"});
-  navtree.css({height:windowHeight + "px"});
-  sidenav.css({height:windowHeight + "px",top: headerHeight+"px"});
-}
-
-function initResizable()
-{
-  header  = $("#top");
-  sidenav = $("#side-nav");
-  content = $("#doc-content");
-  navtree = $("#nav-tree");
-  footer  = $("#nav-path");
-  $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } });
-  $(window).resize(function() { resizeHeight(); });
-  var width = readCookie('width');
-  if (width) { restoreWidth(width); } else { resizeWidth(); }
-  resizeHeight();
-  var url = location.href;
-  var i=url.indexOf("#");
-  if (i>=0) window.location.hash=url.substr(i);
-  var _preventDefault = function(evt) { evt.preventDefault(); };
-  $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault);
-}
-
-
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyAttr.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyAttr.html
deleted file mode 100644
index c6bf37c..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyAttr.html
+++ /dev/null
@@ -1,87 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: TidyAttr Struct Reference</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('structTidyAttr.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">TidyAttr Struct Reference<div class="ingroups"><a class="el" href="group__Opaque.html">Opaque Types</a></div></div>  </div>
-</div><!--header-->
-<div class="contents">
-
-<p><code>#include &lt;<a class="el" href="tidy_8h_source.html">tidy.h</a>&gt;</code></p>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<div class="textblock"><p>Opaque attribute datatype </p>
-</div><hr/>The documentation for this struct was generated from the following file:<ul>
-<li><a class="el" href="tidy_8h_source.html">tidy.h</a></li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="structTidyAttr.html">TidyAttr</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyDoc.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyDoc.html
deleted file mode 100644
index 3e402df..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyDoc.html
+++ /dev/null
@@ -1,87 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: TidyDoc Struct Reference</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('structTidyDoc.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">TidyDoc Struct Reference<div class="ingroups"><a class="el" href="group__Opaque.html">Opaque Types</a></div></div>  </div>
-</div><!--header-->
-<div class="contents">
-
-<p><code>#include &lt;<a class="el" href="tidy_8h_source.html">tidy.h</a>&gt;</code></p>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<div class="textblock"><p>Opaque document datatype </p>
-</div><hr/>The documentation for this struct was generated from the following file:<ul>
-<li><a class="el" href="tidy_8h_source.html">tidy.h</a></li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="structTidyDoc.html">TidyDoc</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyNode.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyNode.html
deleted file mode 100644
index 8738394..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyNode.html
+++ /dev/null
@@ -1,87 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: TidyNode Struct Reference</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('structTidyNode.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">TidyNode Struct Reference<div class="ingroups"><a class="el" href="group__Opaque.html">Opaque Types</a></div></div>  </div>
-</div><!--header-->
-<div class="contents">
-
-<p><code>#include &lt;<a class="el" href="tidy_8h_source.html">tidy.h</a>&gt;</code></p>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<div class="textblock"><p>Opaque node datatype </p>
-</div><hr/>The documentation for this struct was generated from the following file:<ul>
-<li><a class="el" href="tidy_8h_source.html">tidy.h</a></li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="structTidyNode.html">TidyNode</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyOption.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyOption.html
deleted file mode 100644
index 60ef31f..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/structTidyOption.html
+++ /dev/null
@@ -1,87 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: TidyOption Struct Reference</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('structTidyOption.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">TidyOption Struct Reference<div class="ingroups"><a class="el" href="group__Opaque.html">Opaque Types</a></div></div>  </div>
-</div><!--header-->
-<div class="contents">
-
-<p><code>#include &lt;<a class="el" href="tidy_8h_source.html">tidy.h</a>&gt;</code></p>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<div class="textblock"><p>Opaque option datatype </p>
-</div><hr/>The documentation for this struct was generated from the following file:<ul>
-<li><a class="el" href="tidy_8h_source.html">tidy.h</a></li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="structTidyOption.html">TidyOption</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocator.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocator.html
deleted file mode 100644
index 0263c4e..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocator.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: _TidyAllocator Struct Reference</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('struct__TidyAllocator.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#pub-attribs">Data Fields</a>  </div>
-  <div class="headertitle">
-<div class="title">_TidyAllocator Struct Reference<div class="ingroups"><a class="el" href="group__Memory.html">Memory Allocation</a></div></div>  </div>
-</div><!--header-->
-<div class="contents">
-
-<p><code>#include &lt;<a class="el" href="tidy_8h_source.html">tidy.h</a>&gt;</code></p>
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="pub-attribs"></a>
-Data Fields</h2></td></tr>
-<tr class="memitem:a2113f1c06a3cfe4cbdf9212a47e6938b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2113f1c06a3cfe4cbdf9212a47e6938b"></a>
-const <a class="el" href="group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8">TidyAllocatorVtbl</a> *&#160;</td><td class="memItemRight" valign="bottom"><b>vtbl</b></td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<div class="textblock"><p>An allocator. To create your own allocator, do something like the following:</p>
-<p>typedef struct _MyAllocator { TidyAllocator base; ...other custom allocator state... } MyAllocator;</p>
-<p>void* MyAllocator_alloc(TidyAllocator &lt;em&gt;base, void *block, size_t nBytes) { MyAllocator *self = (MyAllocator)base; ... } (etc)</p>
-<p>static const TidyAllocatorVtbl MyAllocatorVtbl = { MyAllocator_alloc, MyAllocator_realloc, MyAllocator_free, MyAllocator_panic };</p>
-<p>myAllocator allocator; <a class="el" href="structTidyDoc.html">TidyDoc</a> doc;</p>
-<p>allocator.base.vtbl = &amp;MyAllocatorVtbl; ...initialise allocator specific state... doc = tidyCreateWithAllocator(&amp;allocator); ...</p>
-<p>Although this looks slightly long winded, the advantage is that to create a custom allocator you simply need to set the vtbl pointer correctly. The vtbl itself can reside in static/global data, and hence does not need to be initialised each time an allocator is created, and furthermore the memory is shared amongst all created allocators. </p>
-</div><hr/>The documentation for this struct was generated from the following file:<ul>
-<li><a class="el" href="tidy_8h_source.html">tidy.h</a></li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocator.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocator.js
deleted file mode 100644
index c168194..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocator.js
+++ /dev/null
@@ -1,4 +0,0 @@
-var struct__TidyAllocator =
-[
-    [ "vtbl", "struct__TidyAllocator.html#a2113f1c06a3cfe4cbdf9212a47e6938b", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocatorVtbl.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocatorVtbl.html
deleted file mode 100644
index a6731a6..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocatorVtbl.html
+++ /dev/null
@@ -1,203 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: _TidyAllocatorVtbl Struct Reference</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('struct__TidyAllocatorVtbl.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#pub-methods">Public Member Functions</a> &#124;
-<a href="#pub-attribs">Data Fields</a>  </div>
-  <div class="headertitle">
-<div class="title">_TidyAllocatorVtbl Struct Reference<div class="ingroups"><a class="el" href="group__Memory.html">Memory Allocation</a></div></div>  </div>
-</div><!--header-->
-<div class="contents">
-
-<p><code>#include &lt;<a class="el" href="tidy_8h_source.html">tidy.h</a>&gt;</code></p>
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="pub-methods"></a>
-Public Member Functions</h2></td></tr>
-<tr class="memitem:ac89bb7f5b58fcb5b31a1560705f3b817"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">void</a> *TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyAllocatorVtbl.html#ac89bb7f5b58fcb5b31a1560705f3b817">alloc</a> (<a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *self, size_t nBytes)</td></tr>
-<tr class="memitem:a0cad0dd2aa75a20573fc46f25460a5cc"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">void</a> *TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyAllocatorVtbl.html#a0cad0dd2aa75a20573fc46f25460a5cc">realloc</a> (<a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *self, <a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">void</a> *block, size_t nBytes)</td></tr>
-<tr class="memitem:a1e453d5e80b35fe3c6c15512c6b95aa5"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">void</a> (TIDY_CALL *free)(<a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *self</td></tr>
-<tr class="memitem:a4ecb749644f9253427eb53028363d01d"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyAllocatorVtbl.html#a4ecb749644f9253427eb53028363d01d">void</a> (TIDY_CALL *panic)(<a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *self</td></tr>
-<tr><td colspan="2"><h2><a name="pub-attribs"></a>
-Data Fields</h2></td></tr>
-<tr class="memitem:a098a1144e7222917467b007f7a5001fc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a098a1144e7222917467b007f7a5001fc"></a>
-<a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">void</a> *&#160;</td><td class="memItemRight" valign="bottom"><b>block</b></td></tr>
-<tr class="memitem:a93b8f23e78a6636c055ecc9ff13aadb3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a93b8f23e78a6636c055ecc9ff13aadb3"></a>
-ctmbstr&#160;</td><td class="memItemRight" valign="bottom"><b>msg</b></td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<div class="textblock"><p>An allocator's function table. All functions here must be provided. </p>
-</div><hr/><h2>Member Function Documentation</h2>
-<a class="anchor" id="ac89bb7f5b58fcb5b31a1560705f3b817"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">void</a>* TIDY_CALL* <a class="el" href="struct__TidyAllocatorVtbl.html#ac89bb7f5b58fcb5b31a1560705f3b817">_TidyAllocatorVtbl::alloc</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *&#160;</td>
-          <td class="paramname"><em>self</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">size_t&#160;</td>
-          <td class="paramname"><em>nBytes</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Called to allocate a block of nBytes of memory </p>
-
-</div>
-</div>
-<a class="anchor" id="a0cad0dd2aa75a20573fc46f25460a5cc"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">void</a>* TIDY_CALL* <a class="el" href="struct__TidyAllocatorVtbl.html#a0cad0dd2aa75a20573fc46f25460a5cc">_TidyAllocatorVtbl::realloc</a> </td>
-          <td>(</td>
-          <td class="paramtype"><a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *&#160;</td>
-          <td class="paramname"><em>self</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype"><a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">void</a> *&#160;</td>
-          <td class="paramname"><em>block</em>, </td>
-        </tr>
-        <tr>
-          <td class="paramkey"></td>
-          <td></td>
-          <td class="paramtype">size_t&#160;</td>
-          <td class="paramname"><em>nBytes</em>&#160;</td>
-        </tr>
-        <tr>
-          <td></td>
-          <td>)</td>
-          <td></td><td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Called to resize (grow, in general) a block of memory. Must support being called with NULL. </p>
-
-</div>
-</div>
-<a class="anchor" id="a1e453d5e80b35fe3c6c15512c6b95aa5"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">_TidyAllocatorVtbl::void</a> </td>
-          <td>(</td>
-          <td class="paramtype">TIDY_CALL *&#160;</td>
-          <td class="paramname"><em>free</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Called to free a previously allocated block of memory </p>
-
-</div>
-</div>
-<a class="anchor" id="a4ecb749644f9253427eb53028363d01d"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">_TidyAllocatorVtbl::void</a> </td>
-          <td>(</td>
-          <td class="paramtype">TIDY_CALL *&#160;</td>
-          <td class="paramname"><em>panic</em></td><td>)</td>
-          <td></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Called when a panic condition is detected. Must support block == NULL. This function is not called if either alloc or realloc fails; it is up to the allocator to do this. Currently this function can only be called if an error is detected in the tree integrity via the internal function CheckNodeIntegrity(). This is a situation that can only arise in the case of a programming error in tidylib. You can turn off node integrity checking by defining the constant NO_NODE_INTEGRITY_CHECK during the build. </p>
-
-</div>
-</div>
-<hr/>The documentation for this struct was generated from the following file:<ul>
-<li><a class="el" href="tidy_8h_source.html">tidy.h</a></li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocatorVtbl.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocatorVtbl.js
deleted file mode 100644
index f23e2d0..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyAllocatorVtbl.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var struct__TidyAllocatorVtbl =
-[
-    [ "alloc", "struct__TidyAllocatorVtbl.html#ac89bb7f5b58fcb5b31a1560705f3b817", null ],
-    [ "realloc", "struct__TidyAllocatorVtbl.html#a0cad0dd2aa75a20573fc46f25460a5cc", null ],
-    [ "void", "struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5", null ],
-    [ "void", "struct__TidyAllocatorVtbl.html#a4ecb749644f9253427eb53028363d01d", null ],
-    [ "block", "struct__TidyAllocatorVtbl.html#a098a1144e7222917467b007f7a5001fc", null ],
-    [ "msg", "struct__TidyAllocatorVtbl.html#a93b8f23e78a6636c055ecc9ff13aadb3", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyBuffer.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyBuffer.html
deleted file mode 100644
index bb43709..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyBuffer.html
+++ /dev/null
@@ -1,169 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: _TidyBuffer Struct Reference</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('struct__TidyBuffer.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#pub-attribs">Data Fields</a>  </div>
-  <div class="headertitle">
-<div class="title">_TidyBuffer Struct Reference</div>  </div>
-</div><!--header-->
-<div class="contents">
-
-<p><code>#include &lt;<a class="el" href="buffio_8h_source.html">buffio.h</a>&gt;</code></p>
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="pub-attribs"></a>
-Data Fields</h2></td></tr>
-<tr class="memitem:ab6655c52ed81490e8016976a4810a330"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyBuffer.html#ab6655c52ed81490e8016976a4810a330">allocator</a></td></tr>
-<tr class="memitem:a2b1c3814410eefbe2168b248485eea91"><td class="memItemLeft" align="right" valign="top">byte *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyBuffer.html#a2b1c3814410eefbe2168b248485eea91">bp</a></td></tr>
-<tr class="memitem:a227728492f6266dec940bcc541046cd9"><td class="memItemLeft" align="right" valign="top">uint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyBuffer.html#a227728492f6266dec940bcc541046cd9">size</a></td></tr>
-<tr class="memitem:a523a1f5f2a1b0333d70b9d8a5a52de13"><td class="memItemLeft" align="right" valign="top">uint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyBuffer.html#a523a1f5f2a1b0333d70b9d8a5a52de13">allocated</a></td></tr>
-<tr class="memitem:af607eaeb44ae6d8f2371e1e05b016caf"><td class="memItemLeft" align="right" valign="top">uint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyBuffer.html#af607eaeb44ae6d8f2371e1e05b016caf">next</a></td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<div class="textblock"><p>TidyBuffer - A chunk of memory </p>
-</div><hr/><h2>Field Documentation</h2>
-<a class="anchor" id="ab6655c52ed81490e8016976a4810a330"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a>* <a class="el" href="struct__TidyBuffer.html#ab6655c52ed81490e8016976a4810a330">_TidyBuffer::allocator</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Memory allocator </p>
-
-</div>
-</div>
-<a class="anchor" id="a2b1c3814410eefbe2168b248485eea91"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">byte* <a class="el" href="struct__TidyBuffer.html#a2b1c3814410eefbe2168b248485eea91">_TidyBuffer::bp</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Pointer to bytes </p>
-
-</div>
-</div>
-<a class="anchor" id="a227728492f6266dec940bcc541046cd9"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">uint <a class="el" href="struct__TidyBuffer.html#a227728492f6266dec940bcc541046cd9">_TidyBuffer::size</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<h1>bytes currently in use</h1>
-
-</div>
-</div>
-<a class="anchor" id="a523a1f5f2a1b0333d70b9d8a5a52de13"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">uint <a class="el" href="struct__TidyBuffer.html#a523a1f5f2a1b0333d70b9d8a5a52de13">_TidyBuffer::allocated</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<h1>bytes allocated</h1>
-
-</div>
-</div>
-<a class="anchor" id="af607eaeb44ae6d8f2371e1e05b016caf"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">uint <a class="el" href="struct__TidyBuffer.html#af607eaeb44ae6d8f2371e1e05b016caf">_TidyBuffer::next</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Offset of current input position </p>
-
-</div>
-</div>
-<hr/>The documentation for this struct was generated from the following file:<ul>
-<li><a class="el" href="buffio_8h_source.html">buffio.h</a></li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="struct__TidyBuffer.html">_TidyBuffer</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyBuffer.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyBuffer.js
deleted file mode 100644
index 8af0790..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyBuffer.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var struct__TidyBuffer =
-[
-    [ "allocator", "struct__TidyBuffer.html#ab6655c52ed81490e8016976a4810a330", null ],
-    [ "bp", "struct__TidyBuffer.html#a2b1c3814410eefbe2168b248485eea91", null ],
-    [ "size", "struct__TidyBuffer.html#a227728492f6266dec940bcc541046cd9", null ],
-    [ "allocated", "struct__TidyBuffer.html#a523a1f5f2a1b0333d70b9d8a5a52de13", null ],
-    [ "next", "struct__TidyBuffer.html#af607eaeb44ae6d8f2371e1e05b016caf", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyInputSource.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyInputSource.html
deleted file mode 100644
index 918a304..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyInputSource.html
+++ /dev/null
@@ -1,154 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: _TidyInputSource Struct Reference</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('struct__TidyInputSource.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#pub-attribs">Data Fields</a>  </div>
-  <div class="headertitle">
-<div class="title">_TidyInputSource Struct Reference<div class="ingroups"><a class="el" href="group__IO.html">I/O and Messages</a></div></div>  </div>
-</div><!--header-->
-<div class="contents">
-
-<p><code>#include &lt;<a class="el" href="tidy_8h_source.html">tidy.h</a>&gt;</code></p>
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="pub-attribs"></a>
-Data Fields</h2></td></tr>
-<tr class="memitem:a19bd9d8877bfc702ceae4e174d0b07d4"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyInputSource.html#a19bd9d8877bfc702ceae4e174d0b07d4">sourceData</a></td></tr>
-<tr class="memitem:a4c318270e25e2e4dd9506cb04542b7d8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyInputSource.html#a4c318270e25e2e4dd9506cb04542b7d8">getByte</a></td></tr>
-<tr class="memitem:a8bb61c749e1295207cd92752e63ae505"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyInputSource.html#a8bb61c749e1295207cd92752e63ae505">ungetByte</a></td></tr>
-<tr class="memitem:af90ba85f6caffb1321a8fe3ef4b7bebb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyInputSource.html#af90ba85f6caffb1321a8fe3ef4b7bebb">eof</a></td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<div class="textblock"><p>TidyInputSource - Delivers raw bytes of input </p>
-</div><hr/><h2>Field Documentation</h2>
-<a class="anchor" id="a19bd9d8877bfc702ceae4e174d0b07d4"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void* <a class="el" href="struct__TidyInputSource.html#a19bd9d8877bfc702ceae4e174d0b07d4">_TidyInputSource::sourceData</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Input context. Passed to callbacks </p>
-
-</div>
-</div>
-<a class="anchor" id="a4c318270e25e2e4dd9506cb04542b7d8"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a> <a class="el" href="struct__TidyInputSource.html#a4c318270e25e2e4dd9506cb04542b7d8">_TidyInputSource::getByte</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Pointer to "get byte" callback </p>
-
-</div>
-</div>
-<a class="anchor" id="a8bb61c749e1295207cd92752e63ae505"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a> <a class="el" href="struct__TidyInputSource.html#a8bb61c749e1295207cd92752e63ae505">_TidyInputSource::ungetByte</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Pointer to "unget" callback </p>
-
-</div>
-</div>
-<a class="anchor" id="af90ba85f6caffb1321a8fe3ef4b7bebb"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a> <a class="el" href="struct__TidyInputSource.html#af90ba85f6caffb1321a8fe3ef4b7bebb">_TidyInputSource::eof</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Pointer to "eof" callback </p>
-
-</div>
-</div>
-<hr/>The documentation for this struct was generated from the following file:<ul>
-<li><a class="el" href="tidy_8h_source.html">tidy.h</a></li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyInputSource.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyInputSource.js
deleted file mode 100644
index af08e79..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyInputSource.js
+++ /dev/null
@@ -1,7 +0,0 @@
-var struct__TidyInputSource =
-[
-    [ "sourceData", "struct__TidyInputSource.html#a19bd9d8877bfc702ceae4e174d0b07d4", null ],
-    [ "getByte", "struct__TidyInputSource.html#a4c318270e25e2e4dd9506cb04542b7d8", null ],
-    [ "ungetByte", "struct__TidyInputSource.html#a8bb61c749e1295207cd92752e63ae505", null ],
-    [ "eof", "struct__TidyInputSource.html#af90ba85f6caffb1321a8fe3ef4b7bebb", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyOutputSink.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyOutputSink.html
deleted file mode 100644
index 98a12cb..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyOutputSink.html
+++ /dev/null
@@ -1,124 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: _TidyOutputSink Struct Reference</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('struct__TidyOutputSink.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#pub-attribs">Data Fields</a>  </div>
-  <div class="headertitle">
-<div class="title">_TidyOutputSink Struct Reference<div class="ingroups"><a class="el" href="group__IO.html">I/O and Messages</a></div></div>  </div>
-</div><!--header-->
-<div class="contents">
-
-<p><code>#include &lt;<a class="el" href="tidy_8h_source.html">tidy.h</a>&gt;</code></p>
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="pub-attribs"></a>
-Data Fields</h2></td></tr>
-<tr class="memitem:a8ea61dfa1ce4ba41a7a9c50b7729ab8a"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyOutputSink.html#a8ea61dfa1ce4ba41a7a9c50b7729ab8a">sinkData</a></td></tr>
-<tr class="memitem:a0b392463d9767dc9fbed2f524fbe7407"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyOutputSink.html#a0b392463d9767dc9fbed2f524fbe7407">putByte</a></td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<div class="textblock"><p>TidyOutputSink - accepts raw bytes of output </p>
-</div><hr/><h2>Field Documentation</h2>
-<a class="anchor" id="a8ea61dfa1ce4ba41a7a9c50b7729ab8a"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname">void* <a class="el" href="struct__TidyOutputSink.html#a8ea61dfa1ce4ba41a7a9c50b7729ab8a">_TidyOutputSink::sinkData</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Output context. Passed to callbacks </p>
-
-</div>
-</div>
-<a class="anchor" id="a0b392463d9767dc9fbed2f524fbe7407"></a>
-<div class="memitem">
-<div class="memproto">
-      <table class="memname">
-        <tr>
-          <td class="memname"><a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a> <a class="el" href="struct__TidyOutputSink.html#a0b392463d9767dc9fbed2f524fbe7407">_TidyOutputSink::putByte</a></td>
-        </tr>
-      </table>
-</div>
-<div class="memdoc">
-<p>Pointer to "put byte" callback </p>
-
-</div>
-</div>
-<hr/>The documentation for this struct was generated from the following file:<ul>
-<li><a class="el" href="tidy_8h_source.html">tidy.h</a></li>
-</ul>
-</div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyOutputSink.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyOutputSink.js
deleted file mode 100644
index 87e9671..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/struct__TidyOutputSink.js
+++ /dev/null
@@ -1,5 +0,0 @@
-var struct__TidyOutputSink =
-[
-    [ "sinkData", "struct__TidyOutputSink.html#a8ea61dfa1ce4ba41a7a9c50b7729ab8a", null ],
-    [ "putByte", "struct__TidyOutputSink.html#a0b392463d9767dc9fbed2f524fbe7407", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_a.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_a.png
deleted file mode 100644
index 2d99ef2..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_a.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_b.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_b.png
deleted file mode 100644
index b2c3d2b..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_b.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_h.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_h.png
deleted file mode 100644
index c11f48f..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_h.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_s.png b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_s.png
deleted file mode 100644
index 978943a..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tab_s.png
+++ /dev/null
Binary files differ
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tabs.css b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tabs.css
deleted file mode 100644
index 2192056..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tabs.css
+++ /dev/null
@@ -1,59 +0,0 @@
-.tabs, .tabs2, .tabs3 {
-    background-image: url('tab_b.png');
-    width: 100%;
-    z-index: 101;
-    font-size: 13px;
-}
-
-.tabs2 {
-    font-size: 10px;
-}
-.tabs3 {
-    font-size: 9px;
-}
-
-.tablist {
-    margin: 0;
-    padding: 0;
-    display: table;
-}
-
-.tablist li {
-    float: left;
-    display: table-cell;
-    background-image: url('tab_b.png');
-    line-height: 36px;
-    list-style: none;
-}
-
-.tablist a {
-    display: block;
-    padding: 0 20px;
-    font-weight: bold;
-    background-image:url('tab_s.png');
-    background-repeat:no-repeat;
-    background-position:right;
-    color: #283A5D;
-    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
-    text-decoration: none;
-    outline: none;
-}
-
-.tabs3 .tablist a {
-    padding: 0 10px;
-}
-
-.tablist a:hover {
-    background-image: url('tab_h.png');
-    background-repeat:repeat-x;
-    color: #fff;
-    text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
-    text-decoration: none;
-}
-
-.tablist li.current a {
-    background-image: url('tab_a.png');
-    background-repeat:repeat-x;
-    color: #fff;
-    text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
-}
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidy_8h.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidy_8h.html
deleted file mode 100644
index 9dc812f..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidy_8h.html
+++ /dev/null
@@ -1,641 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: tidy.h File Reference</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('tidy_8h.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="summary">
-<a href="#nested-classes">Data Structures</a> &#124;
-<a href="#define-members">Defines</a> &#124;
-<a href="#typedef-members">Typedefs</a> &#124;
-<a href="#func-members">Functions</a>  </div>
-  <div class="headertitle">
-<div class="title">tidy.h File Reference</div>  </div>
-</div><!--header-->
-<div class="contents">
-
-<p><a href="tidy_8h_source.html">Go to the source code of this file.</a></p>
-<table class="memberdecls">
-<tr><td colspan="2"><h2><a name="nested-classes"></a>
-Data Structures</h2></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a></td></tr>
-<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a></td></tr>
-<tr><td colspan="2"><h2><a name="define-members"></a>
-Defines</h2></td></tr>
-<tr class="memitem:ga9a078b706ec6f37cce40958f6f68585a"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga9a078b706ec6f37cce40958f6f68585a">EndOfStream</a>&#160;&#160;&#160;(~0u)</td></tr>
-<tr><td colspan="2"><h2><a name="typedef-members"></a>
-Typedefs</h2></td></tr>
-<tr class="memitem:a8b2baca367b9029e506c454cc06c62c5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8b2baca367b9029e506c454cc06c62c5"></a>
-typedef struct <a class="el" href="struct__TidyBuffer.html">_TidyBuffer</a>&#160;</td><td class="memItemRight" valign="bottom"><b>TidyBuffer</b></td></tr>
-<tr class="memitem:ga3fe8c5ac7d658618c732565776940ed8"><td class="memItemLeft" align="right" valign="top">typedef struct <a class="el" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8">TidyAllocatorVtbl</a></td></tr>
-<tr class="memitem:ga78e96524a88db0c09e766795265863da"><td class="memItemLeft" align="right" valign="top">typedef struct <a class="el" href="struct__TidyAllocator.html">_TidyAllocator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a></td></tr>
-<tr class="memitem:ga3bd3cc4d0c837a4cd10ab472ba671430"><td class="memItemLeft" align="right" valign="top">typedef void *(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a> )(size_t len)</td></tr>
-<tr class="memitem:ga9d9a5625817932dbbb39dd33de678edd"><td class="memItemLeft" align="right" valign="top">typedef void *(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a> )(void *buf, size_t len)</td></tr>
-<tr class="memitem:ga27931c443e424937ba47f0d4795aa35f"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a> )(void *buf)</td></tr>
-<tr class="memitem:ga0770be41d9935a3e2933ba0be3c7725c"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a> )(ctmbstr mssg)</td></tr>
-<tr class="memitem:gaee8a8bcb6091bd36f6fc20507a4544fc"><td class="memItemLeft" align="right" valign="top">typedef Bool(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">TidyOptCallback</a> )(ctmbstr option, ctmbstr value)</td></tr>
-<tr class="memitem:ga6951f79d4b50288e96a3896ab01393d6"><td class="memItemLeft" align="right" valign="top">typedef int(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a> )(void *sourceData)</td></tr>
-<tr class="memitem:ga298b882c5fc7cc969ef58fb187bdd371"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a> )(void *sourceData, byte bt)</td></tr>
-<tr class="memitem:ga9f8e1bb4c4740ffb399ec424594c4972"><td class="memItemLeft" align="right" valign="top">typedef Bool(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a> )(void *sourceData)</td></tr>
-<tr class="memitem:ga86fcc3c86bd63b26a559938bc38d34bb"><td class="memItemLeft" align="right" valign="top">typedef TIDY_STRUCT struct <br class="typebreak"/>
-<a class="el" href="struct__TidyInputSource.html">_TidyInputSource</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a></td></tr>
-<tr class="memitem:ga63bcce5aa5f52e4e2e22aedd750b8bbc"><td class="memItemLeft" align="right" valign="top">typedef void(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a> )(void *sinkData, byte bt)</td></tr>
-<tr class="memitem:ga6bdd15de48364d2b5dbf2141109d3f98"><td class="memItemLeft" align="right" valign="top">typedef TIDY_STRUCT struct <br class="typebreak"/>
-<a class="el" href="struct__TidyOutputSink.html">_TidyOutputSink</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a></td></tr>
-<tr class="memitem:ga29c5bee28b95924a97ea4fbb81668c5e"><td class="memItemLeft" align="right" valign="top">typedef Bool(TIDY_CALL *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a> )(<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyReportLevel lvl, uint line, uint col, ctmbstr mssg)</td></tr>
-<tr><td colspan="2"><h2><a name="func-members"></a>
-Functions</h2></td></tr>
-<tr class="memitem:ga1b209c260854e89f73101c18fe835516"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1b209c260854e89f73101c18fe835516"></a>
-&#160;</td><td class="memItemRight" valign="bottom"><b>opaque_type</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a>)</td></tr>
-<tr class="memitem:gafdaa7208b82ae763fbccb646035f9391"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafdaa7208b82ae763fbccb646035f9391"></a>
-&#160;</td><td class="memItemRight" valign="bottom"><b>opaque_type</b> (<a class="el" href="structTidyOption.html">TidyOption</a>)</td></tr>
-<tr class="memitem:gaa8d1f990e71bf7d6bc1b17974b7788a4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa8d1f990e71bf7d6bc1b17974b7788a4"></a>
-&#160;</td><td class="memItemRight" valign="bottom"><b>opaque_type</b> (<a class="el" href="structTidyNode.html">TidyNode</a>)</td></tr>
-<tr class="memitem:ga236c416d715827e6db5691ce66415c2f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga236c416d715827e6db5691ce66415c2f"></a>
-&#160;</td><td class="memItemRight" valign="bottom"><b>opaque_type</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a>)</td></tr>
-<tr class="memitem:gab55079374527525e3374ebc4d2a1e625"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#gab55079374527525e3374ebc4d2a1e625">tidySetMallocCall</a> (<a class="el" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a> fmalloc)</td></tr>
-<tr class="memitem:ga446b538da3ee3f2e5a3827b877665b30"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30">tidySetReallocCall</a> (<a class="el" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a> frealloc)</td></tr>
-<tr class="memitem:ga70e707b7df86effb5727b0b9ff64eed7"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7">tidySetFreeCall</a> (<a class="el" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a> ffree)</td></tr>
-<tr class="memitem:gab12cc0435bacec1a8c725e02357acc00"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Memory.html#gab12cc0435bacec1a8c725e02357acc00">tidySetPanicCall</a> (<a class="el" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a> fpanic)</td></tr>
-<tr class="memitem:ga728e98da5985ecb26de7c6c45f7fcaf2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga728e98da5985ecb26de7c6c45f7fcaf2"></a>
-<a class="el" href="structTidyDoc.html">TidyDoc</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyCreate</b> (void)</td></tr>
-<tr class="memitem:gaf58ea992501470e0998182a1c75df2aa"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf58ea992501470e0998182a1c75df2aa"></a>
-<a class="el" href="structTidyDoc.html">TidyDoc</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyCreateWithAllocator</b> (<a class="el" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">TidyAllocator</a> *allocator)</td></tr>
-<tr class="memitem:gacc380c1451088b89898a85337b113713"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gacc380c1451088b89898a85337b113713"></a>
-void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyRelease</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gaa1a9f78be3542868ac10481e2efa8708"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708">tidySetAppData</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, void *appData)</td></tr>
-<tr class="memitem:ga1319c9757d4f8c596615e0fdcfcf2504"><td class="memItemLeft" align="right" valign="top">void *TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504">tidyGetAppData</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gab7b404ada690635341d2e2d332102b36"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gab7b404ada690635341d2e2d332102b36">tidyReleaseDate</a> (void)</td></tr>
-<tr class="memitem:gaf45a8fb57fb9bfce89c42e1cc9d3e760"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760">tidyStatus</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga8fbec4bc2b67c4f525440cfc7196b443"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443">tidyDetectedHtmlVersion</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gaf3279c9a0506629d2ae766c31c1de48d"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d">tidyDetectedXhtml</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga8dd761b5e230119f8eb6c412f12fdec2"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2">tidyDetectedGenericXml</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga3617548e3669d00ad074daaaa8f3460d"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d">tidyErrorCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga29b0c36f75584a2a26422b021561f19c"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga29b0c36f75584a2a26422b021561f19c">tidyWarningCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga56ad617084cdcbb485f06f597de7dedb"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb">tidyAccessWarningCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gac17c01a0dbb8f73bdee29df48e499988"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988">tidyConfigErrorCount</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga2dec710c0d4927e76a7b0d338b11693a"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a">tidyLoadConfig</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr configFile)</td></tr>
-<tr class="memitem:gac677de148c6f00fc96a682c21433ab1c"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gac677de148c6f00fc96a682c21433ab1c">tidyLoadConfigEnc</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr configFile, ctmbstr charenc)</td></tr>
-<tr class="memitem:gac10c770d6ea5a0610159ad17f8427943"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac10c770d6ea5a0610159ad17f8427943"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyFileExists</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr filename)</td></tr>
-<tr class="memitem:ga2612e184472c2a59ca822a37d030e9af"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga2612e184472c2a59ca822a37d030e9af">tidySetCharEncoding</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam)</td></tr>
-<tr class="memitem:ga05203a9193542a67b8396cf6ca8acf59"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59">tidySetInCharEncoding</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam)</td></tr>
-<tr class="memitem:ga9b6bd07e38bf320cf88663a29967f1e9"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9">tidySetOutCharEncoding</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam)</td></tr>
-<tr class="memitem:gab94961700088d2daf8dcc012a5e33e49"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab94961700088d2daf8dcc012a5e33e49"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidySetOptionCallback</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">TidyOptCallback</a> pOptCallback)</td></tr>
-<tr class="memitem:ga500f31ba81d015b8ce9dad6f2a6ade75"><td class="memItemLeft" align="right" valign="top">TidyOptionId TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga500f31ba81d015b8ce9dad6f2a6ade75">tidyOptGetIdForName</a> (ctmbstr optnam)</td></tr>
-<tr class="memitem:gab92a35ffbd3b0b668534d63f94d2486f"><td class="memItemLeft" align="right" valign="top">TidyIterator TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gab92a35ffbd3b0b668534d63f94d2486f">tidyGetOptionList</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga1a3088dacc539487e00f1eb4009dafc0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga1a3088dacc539487e00f1eb4009dafc0">tidyGetNextOption</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyIterator *pos)</td></tr>
-<tr class="memitem:ga030c695d6407b2756856eb1862642cfe"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga030c695d6407b2756856eb1862642cfe">tidyGetOption</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:gaeae2e147645697fc54234ff2526a8108"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gaeae2e147645697fc54234ff2526a8108">tidyGetOptionByName</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr optnam)</td></tr>
-<tr class="memitem:ga51cf095b76921b4e290e14814998f096"><td class="memItemLeft" align="right" valign="top">TidyOptionId TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga51cf095b76921b4e290e14814998f096">tidyOptGetId</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gaf370cd2ea113747f50da185fda24adcb"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gaf370cd2ea113747f50da185fda24adcb">tidyOptGetName</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:ga06e2685cc2950b182ff2f7136d170a34"><td class="memItemLeft" align="right" valign="top">TidyOptionType TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga06e2685cc2950b182ff2f7136d170a34">tidyOptGetType</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:ga6aba2ccdb1237a70f5fe1393fee0ce4d"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga6aba2ccdb1237a70f5fe1393fee0ce4d">tidyOptIsReadOnly</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:ga1d8b72e64e4d949dc21599fa788e842f"><td class="memItemLeft" align="right" valign="top">TidyConfigCategory TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga1d8b72e64e4d949dc21599fa788e842f">tidyOptGetCategory</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gab9e02c9927fe2c382ec5f81b4acf9cb4"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gab9e02c9927fe2c382ec5f81b4acf9cb4">tidyOptGetDefault</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gafc8df35e864dd3a24f23aca3c2f8bd9d"><td class="memItemLeft" align="right" valign="top">ulong TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gafc8df35e864dd3a24f23aca3c2f8bd9d">tidyOptGetDefaultInt</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gadadea4da66e3718e02b720c2b59d170b"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gadadea4da66e3718e02b720c2b59d170b">tidyOptGetDefaultBool</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:ga31f815fe2b5bf1e00d6b50be62edd0ab"><td class="memItemLeft" align="right" valign="top">TidyIterator TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga31f815fe2b5bf1e00d6b50be62edd0ab">tidyOptGetPickList</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gad1366c5c458f38d2a9c6a6335e6704d9"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gad1366c5c458f38d2a9c6a6335e6704d9">tidyOptGetNextPick</a> (<a class="el" href="structTidyOption.html">TidyOption</a> opt, TidyIterator *pos)</td></tr>
-<tr class="memitem:ga0fbe23ab1e4ec374fa38e6f514617e4d"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga0fbe23ab1e4ec374fa38e6f514617e4d">tidyOptGetValue</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:gaf37bdad3b6809d8cb78e7d6316d4ba69"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gaf37bdad3b6809d8cb78e7d6316d4ba69">tidyOptSetValue</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId, ctmbstr val)</td></tr>
-<tr class="memitem:gad09fbcbbaf83fbf93e0d7be9c9bb30c0"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gad09fbcbbaf83fbf93e0d7be9c9bb30c0">tidyOptParseValue</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr optnam, ctmbstr val)</td></tr>
-<tr class="memitem:ga7ff683612d446b07318517e564cccc7a"><td class="memItemLeft" align="right" valign="top">ulong TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga7ff683612d446b07318517e564cccc7a">tidyOptGetInt</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:gad9e75a64c8dcbc54e791959cf934e1ad"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gad9e75a64c8dcbc54e791959cf934e1ad">tidyOptSetInt</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId, ulong val)</td></tr>
-<tr class="memitem:ga09e6c999e9e7ebc94ea3d9cf5d674125"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga09e6c999e9e7ebc94ea3d9cf5d674125">tidyOptGetBool</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:gac9de7e155bea5c28713f2bfb93614472"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gac9de7e155bea5c28713f2bfb93614472">tidyOptSetBool</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId, Bool val)</td></tr>
-<tr class="memitem:ga2aa45ad67758ca0b18d14eafa37fe080"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga2aa45ad67758ca0b18d14eafa37fe080">tidyOptResetToDefault</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId opt)</td></tr>
-<tr class="memitem:ga874ce26884f0eeaf692c30758688888a"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga874ce26884f0eeaf692c30758688888a">tidyOptResetAllToDefault</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga4beb2c73c90c3e2ae589c2642478cebd"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga4beb2c73c90c3e2ae589c2642478cebd">tidyOptSnapshot</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gae6212b8f32990763cc18a6d3f05eb191"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gae6212b8f32990763cc18a6d3f05eb191">tidyOptResetToSnapshot</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga083cb42d6f4413604240b5c1b3aa2070"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga083cb42d6f4413604240b5c1b3aa2070">tidyOptDiffThanDefault</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga793bc9e177aa90301802e44c4fc22e0e"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga793bc9e177aa90301802e44c4fc22e0e">tidyOptDiffThanSnapshot</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga0b6cb26ab5dbbe0a0841d605fbd06fad"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga0b6cb26ab5dbbe0a0841d605fbd06fad">tidyOptCopyConfig</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdocTo, <a class="el" href="structTidyDoc.html">TidyDoc</a> tdocFrom)</td></tr>
-<tr class="memitem:ga47f8502cc202fc7423937647957955a3"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga47f8502cc202fc7423937647957955a3">tidyOptGetEncName</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:ga0785047cc73d5fbc88691861a0fa9c78"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga0785047cc73d5fbc88691861a0fa9c78">tidyOptGetCurrPick</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId)</td></tr>
-<tr class="memitem:ga55f30cf9e507f8fc66330ec3b0132620"><td class="memItemLeft" align="right" valign="top">TidyIterator TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga55f30cf9e507f8fc66330ec3b0132620">tidyOptGetDeclTagList</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gacec933eef8f9eec3dfa4382e05cab251"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gacec933eef8f9eec3dfa4382e05cab251">tidyOptGetNextDeclTag</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId, TidyIterator *iter)</td></tr>
-<tr class="memitem:gafca3ed506463e192187133ff646a643d"><td class="memItemLeft" align="right" valign="top">ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gafca3ed506463e192187133ff646a643d">tidyOptGetDoc</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f"><td class="memItemLeft" align="right" valign="top">TidyIterator TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f">tidyOptGetDocLinksList</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyOption.html">TidyOption</a> opt)</td></tr>
-<tr class="memitem:ga1db79a95067d6364c02263d9492fa9e8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structTidyOption.html">TidyOption</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Configuration.html#ga1db79a95067d6364c02263d9492fa9e8">tidyOptGetNextDocLinks</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyIterator *pos)</td></tr>
-<tr class="memitem:gab446af273e331cb0440dd01b6990d2d0"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#gab446af273e331cb0440dd01b6990d2d0">tidyInitSource</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source, void *srcData, <a class="el" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a> gbFunc, <a class="el" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a> ugbFunc, <a class="el" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a> endFunc)</td></tr>
-<tr class="memitem:gadba396ffec9f29b27d73a23264dcfa0b"><td class="memItemLeft" align="right" valign="top">uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b">tidyGetByte</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source)</td></tr>
-<tr class="memitem:ga0c8d46de315cabb0ac7d2cf01ca183d7"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7">tidyUngetByte</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source, uint byteValue)</td></tr>
-<tr class="memitem:ga399df5ba17614205964a665f7b1726a6"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga399df5ba17614205964a665f7b1726a6">tidyIsEOF</a> (<a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source)</td></tr>
-<tr class="memitem:ga7e93289be3a7253cdf99a96285e6a2d4"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4">tidyInitSink</a> (<a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink, void *snkData, <a class="el" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a> pbFunc)</td></tr>
-<tr class="memitem:ga2a34772782d7b786e37012fce4cd2425"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga2a34772782d7b786e37012fce4cd2425">tidyPutByte</a> (<a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink, uint byteValue)</td></tr>
-<tr class="memitem:ga51e02523601388bb83c2555b995e68b0"><td class="memItemLeft" align="right" valign="top">Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga51e02523601388bb83c2555b995e68b0">tidySetReportFilter</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a> filtCallback)</td></tr>
-<tr class="memitem:ga669758031bbd5d4ba957b19e77229c8b"><td class="memItemLeft" align="right" valign="top">FILE *TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga669758031bbd5d4ba957b19e77229c8b">tidySetErrorFile</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr errfilnam)</td></tr>
-<tr class="memitem:ga5e5cffe93edf4bea0d3214be70d6f77b"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b">tidySetErrorBuffer</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *errbuf)</td></tr>
-<tr class="memitem:gad47c75f3af85e7927e7ac18918ec6363"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__IO.html#gad47c75f3af85e7927e7ac18918ec6363">tidySetErrorSink</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink)</td></tr>
-<tr class="memitem:ga5ec263f2e430dd9c9e10437f067b2a28"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Parse.html#ga5ec263f2e430dd9c9e10437f067b2a28">tidyParseFile</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr filename)</td></tr>
-<tr class="memitem:ga96b41ff6e6a7f9d0b9b0e901e33ad31d"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Parse.html#ga96b41ff6e6a7f9d0b9b0e901e33ad31d">tidyParseStdin</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga50c02fa244dcd120ae339719c2132ff9"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Parse.html#ga50c02fa244dcd120ae339719c2132ff9">tidyParseString</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr content)</td></tr>
-<tr class="memitem:gaa28ce34c95750f150205843885317851"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Parse.html#gaa28ce34c95750f150205843885317851">tidyParseBuffer</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:gaa65dad2a4ca5fa97d267ddefe1180e0e"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Parse.html#gaa65dad2a4ca5fa97d267ddefe1180e0e">tidyParseSource</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a> *source)</td></tr>
-<tr class="memitem:ga11fd23eeb4acfaa0f9501effa0c21269"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidyCleanAndRepair</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga6170500974cc02114f6e4a29d44b7d77"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77">tidyRunDiagnostics</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga19ee6e2ee0e719a97cff443ebb19ae44"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Save.html#ga19ee6e2ee0e719a97cff443ebb19ae44">tidySaveFile</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr filename)</td></tr>
-<tr class="memitem:ga6638d1800ee63fc6bea19bc2bf582be2"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Save.html#ga6638d1800ee63fc6bea19bc2bf582be2">tidySaveStdout</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga7e8642262c8c4d34cf7cc426647d29f0"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Save.html#ga7e8642262c8c4d34cf7cc426647d29f0">tidySaveBuffer</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:gaf684fefd3e42f459cf0a4ebe937ce12b"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Save.html#gaf684fefd3e42f459cf0a4ebe937ce12b">tidySaveString</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, tmbstr buffer, uint *buflen)</td></tr>
-<tr class="memitem:gaea985b28470453d0218092b137f71e77"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Save.html#gaea985b28470453d0218092b137f71e77">tidySaveSink</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink)</td></tr>
-<tr class="memitem:gaaa6e0510b0d7ca0524c928143488c6ca"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca">tidyOptSaveFile</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr cfgfil)</td></tr>
-<tr class="memitem:gabf30cc37e3e7aa07dd351f083ab747ee"><td class="memItemLeft" align="right" valign="top">int TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee">tidyOptSaveSink</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a> *sink)</td></tr>
-<tr class="memitem:ga4c050ea7d2746db948ad45edb2264d70"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70">tidyErrorSummary</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga28384bf13bf6962c8ef0bcab9b4b7971"><td class="memItemLeft" align="right" valign="top">void TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971">tidyGeneralInfo</a> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gac70f893c5cd5805bf76b393ad07c93c6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac70f893c5cd5805bf76b393ad07c93c6"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetRoot</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:gae539f5031bd1e039458a7fffb07a2b7a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae539f5031bd1e039458a7fffb07a2b7a"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetHtml</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga8bc403902d8535a6dab3efc29519d970"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8bc403902d8535a6dab3efc29519d970"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetHead</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga860430a9ae7b9d347f0f7eb4204b3046"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga860430a9ae7b9d347f0f7eb4204b3046"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetBody</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc)</td></tr>
-<tr class="memitem:ga0da0a16a07321623bda6a02a397111ca"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0da0a16a07321623bda6a02a397111ca"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetParent</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga0ef21eb446a56c3874a993b6f3966e73"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0ef21eb446a56c3874a993b6f3966e73"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetChild</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga60f48e1a0981ccfa027e62f73f0b1e7d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga60f48e1a0981ccfa027e62f73f0b1e7d"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetNext</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7a277d67c8143a8dd66d6c4796e5afa2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7a277d67c8143a8dd66d6c4796e5afa2"></a>
-<a class="el" href="structTidyNode.html">TidyNode</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyGetPrev</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7247560b46127ac69780b938d8bca177"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7247560b46127ac69780b938d8bca177"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrFirst</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8af1c83f5c33e767ca40561341089bae"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8af1c83f5c33e767ca40561341089bae"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrNext</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga32dff6f721a553a54cee0324cda15ba7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga32dff6f721a553a54cee0324cda15ba7"></a>
-ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrName</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaeb8f272e8135e744b9b3f006517f1073"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeb8f272e8135e744b9b3f006517f1073"></a>
-ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrValue</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaa9786b1ce44061e2811d1ecbcd76d318"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa9786b1ce44061e2811d1ecbcd76d318"></a>
-TidyNodeType TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeGetType</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5ea4ecef06555a58f942b2c500722156"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5ea4ecef06555a58f942b2c500722156"></a>
-ctmbstr TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeGetName</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga446c2a5ed55a75685074585f007b52c5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga446c2a5ed55a75685074585f007b52c5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsText</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga2eb2b4a0ee75c74215de9859467d17f1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga2eb2b4a0ee75c74215de9859467d17f1"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsProp</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga69c929ff5987273560e683e44b2515eb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga69c929ff5987273560e683e44b2515eb"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHeader</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4abc910dd180773665c6e2e4e30ea2d7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4abc910dd180773665c6e2e4e30ea2d7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeHasText</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga174176952045d3a79500451eae0322d6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga174176952045d3a79500451eae0322d6"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeGetText</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:ga775c446f1fd1ffa25eb688af6c56853c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga775c446f1fd1ffa25eb688af6c56853c"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeGetValue</b> (<a class="el" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="el" href="structTidyNode.html">TidyNode</a> tnod, <a class="el" href="struct__TidyBuffer.html">TidyBuffer</a> *buf)</td></tr>
-<tr class="memitem:ga30307d5b9937c7f0aad1f37d7cf7848c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga30307d5b9937c7f0aad1f37d7cf7848c"></a>
-TidyTagId TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeGetId</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga98658b8c02e0d2000a6c7da5d916ced4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga98658b8c02e0d2000a6c7da5d916ced4"></a>
-uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeLine</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga00fb1f74d89419ad97f345660cd8876f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga00fb1f74d89419ad97f345660cd8876f"></a>
-uint TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeColumn</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaf692f1ed40027be3f3cd5d198abc3ad2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf692f1ed40027be3f3cd5d198abc3ad2"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHTML</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga59e3d8737230aaf6aefd38923b2d9938"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga59e3d8737230aaf6aefd38923b2d9938"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHEAD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga41c163de846f0a5f0a06f8e8ba1559cc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga41c163de846f0a5f0a06f8e8ba1559cc"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTITLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga9c09a80c0fbb47c46c48816217058067"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9c09a80c0fbb47c46c48816217058067"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBASE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaeecc06fcf1ead446d89e2da189124a84"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeecc06fcf1ead446d89e2da189124a84"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMETA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gacba5807618c3f9e55cc03ff87de9b7ce"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gacba5807618c3f9e55cc03ff87de9b7ce"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBODY</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae1ea58f48b98e27dc9e4489937f17755"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae1ea58f48b98e27dc9e4489937f17755"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFRAMESET</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gacb9bcd9b662a2089064a3c240062c99f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gacb9bcd9b662a2089064a3c240062c99f"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFRAME</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga816d167ba4cb8b3787967ec3dbde5ec5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga816d167ba4cb8b3787967ec3dbde5ec5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsIFRAME</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8320b595afb1e7e167b7c1a79b0dc366"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8320b595afb1e7e167b7c1a79b0dc366"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsNOFRAMES</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga51ace62a3ec1c51035cabf4a2605d898"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga51ace62a3ec1c51035cabf4a2605d898"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsHR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac28ca322aabade5ec3a7a7601c72ee16"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac28ca322aabade5ec3a7a7601c72ee16"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH1</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaa6f4c167e5934e14fd2bc016cbcb5abd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa6f4c167e5934e14fd2bc016cbcb5abd"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH2</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga0603085c30d94973f5d9d5b5de2ff200"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0603085c30d94973f5d9d5b5de2ff200"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsPRE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafc3aadf1d5eaab9c59ce47bfc2b6ceae"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafc3aadf1d5eaab9c59ce47bfc2b6ceae"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLISTING</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafd77569c4993bcd4ded3b97608248b9e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafd77569c4993bcd4ded3b97608248b9e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gadde0e35eef49567f98c385a736588409"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadde0e35eef49567f98c385a736588409"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsUL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga52d9c5612a982cc71602b5088f415879"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga52d9c5612a982cc71602b5088f415879"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gadb2e0e0fbeac0da447fd96fc75158f54"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadb2e0e0fbeac0da447fd96fc75158f54"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaac81f7e14fa7e59aa4fa8d4aa6d06268"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaac81f7e14fa7e59aa4fa8d4aa6d06268"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDIR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac6269b21e8ad6e21d66bd5addd77eb87"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac6269b21e8ad6e21d66bd5addd77eb87"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLI</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga3a0c0bc0925bd40677da0286d8b27d7b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3a0c0bc0925bd40677da0286d8b27d7b"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8517c2217955d3602426c2bda1da6402"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8517c2217955d3602426c2bda1da6402"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gad88dbaf421328ad0026a0f6c5b471a28"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad88dbaf421328ad0026a0f6c5b471a28"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTABLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga2493322b8c7ec6e7001e928bd71fc1b6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga2493322b8c7ec6e7001e928bd71fc1b6"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCAPTION</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7de8f8de16a810da710ff0981a08d43d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7de8f8de16a810da710ff0981a08d43d"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae4f6572db3d4bce835660e21f18b1983"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae4f6572db3d4bce835660e21f18b1983"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTH</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6d2aafe8789a16ab429c5fdf9deb0da7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6d2aafe8789a16ab429c5fdf9deb0da7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4638800893b9ae5a70cdb74c06c6a79c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4638800893b9ae5a70cdb74c06c6a79c"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCOL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga385a0cd988f64c8a4bd67d9b198d2ea7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga385a0cd988f64c8a4bd67d9b198d2ea7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCOLGROUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaf0950a14b5b1ab4789b9b0a5bac0b18e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf0950a14b5b1ab4789b9b0a5bac0b18e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae73ab4feaf47cba0fe76ad6ceaaf45a5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae73ab4feaf47cba0fe76ad6ceaaf45a5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac798ba0aa726aee5cbcf3262624c0458"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac798ba0aa726aee5cbcf3262624c0458"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga95af7c22df42cdc104858b6ef545c356"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga95af7c22df42cdc104858b6ef545c356"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsB</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafe4ee40e682872ae83dfce0dd4a8d0c3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafe4ee40e682872ae83dfce0dd4a8d0c3"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsI</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga15ea33b5dc08b426720d0c57cbecaced"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga15ea33b5dc08b426720d0c57cbecaced"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSTRONG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga445cccfc6c19f8f3b73ebd06a361bd48"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga445cccfc6c19f8f3b73ebd06a361bd48"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsEM</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga22e67a4b6c14214d35ad295a82509842"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga22e67a4b6c14214d35ad295a82509842"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBIG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga48af9e160f669f778de274336096e2eb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga48af9e160f669f778de274336096e2eb"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSMALL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga48067f28cfe217c9fc060650d0e3aca4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga48067f28cfe217c9fc060650d0e3aca4"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsPARAM</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7f8b52642e3255b0480f48075dab8d6f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7f8b52642e3255b0480f48075dab8d6f"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOPTION</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafe0455c4b138bffa99a913b8f3a9104f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafe0455c4b138bffa99a913b8f3a9104f"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOPTGROUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafa4f741c56492e05bd351af1f0111f4e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafa4f741c56492e05bd351af1f0111f4e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsIMG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga99beb2cb511391d1aca45fb85cedf27a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga99beb2cb511391d1aca45fb85cedf27a"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMAP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac266b333729c7430b5c73c61769f2786"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac266b333729c7430b5c73c61769f2786"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsAREA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6f0a957c81b4013ced6cbc4e7d8db2af"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6f0a957c81b4013ced6cbc4e7d8db2af"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsNOBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga89ed82add2b5524bb5cf08f382eb5116"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga89ed82add2b5524bb5cf08f382eb5116"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsWBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga53c827624431293012ca7cfde97c937e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga53c827624431293012ca7cfde97c937e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFONT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaf238482802b2fb6e9e0b5b041d3b7611"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf238482802b2fb6e9e0b5b041d3b7611"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLAYER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga445b2216e08962ebc2cf2013dd911969"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga445b2216e08962ebc2cf2013dd911969"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSPACER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6195cdbb5617b5240519b5a993f69592"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6195cdbb5617b5240519b5a993f69592"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsCENTER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga3e7e0649d24765c37404b64837dde32b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3e7e0649d24765c37404b64837dde32b"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSTYLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga86627d1d0706847ff3087e196819706f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga86627d1d0706847ff3087e196819706f"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSCRIPT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga19d096d6eff710ef6c7a154ba8e4c71c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga19d096d6eff710ef6c7a154ba8e4c71c"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsNOSCRIPT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga507a029656b570eac822ea40122571d8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga507a029656b570eac822ea40122571d8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsFORM</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8bd6a34ea2f61d687d24f12a49c51128"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8bd6a34ea2f61d687d24f12a49c51128"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsTEXTAREA</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gabbbd873b72e446a8668c7c69582404e2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gabbbd873b72e446a8668c7c69582404e2"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBLOCKQUOTE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gadfa5afb9f719c21667e98df09f043dd6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadfa5afb9f719c21667e98df09f043dd6"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsAPPLET</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaf8c3d48a3d23f49a9d6e373ae18456c4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf8c3d48a3d23f49a9d6e373ae18456c4"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsOBJECT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae423fbaf8bb2b2d7faf427ebb853159e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae423fbaf8bb2b2d7faf427ebb853159e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsDIV</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga86ade270327fb3afa6d8f881fda3089e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga86ade270327fb3afa6d8f881fda3089e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSPAN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga648890464b129cbceaf749f912f6527e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga648890464b129cbceaf749f912f6527e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsINPUT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6ef21bfc5033fd69c9f94e794d536fdb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6ef21bfc5033fd69c9f94e794d536fdb"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsQ</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7e4e65b0819e33ffdc38183f5dbf2785"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7e4e65b0819e33ffdc38183f5dbf2785"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsLABEL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4d49e513f271e3c1de40a2ca5bb507a5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4d49e513f271e3c1de40a2ca5bb507a5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH3</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8efaa17098b9b4c7be3f4c8a9edd5f37"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8efaa17098b9b4c7be3f4c8a9edd5f37"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH4</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaa929252184f6d11fde69ee76f212822a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa929252184f6d11fde69ee76f212822a"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH5</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4b3bad82463198c3893c901aa20af219"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4b3bad82463198c3893c901aa20af219"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsH6</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5ba4012b1bf4eb54b5042832f9a138e0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5ba4012b1bf4eb54b5042832f9a138e0"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsADDRESS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga25aba7bafb8f63d71fb54c143d053fd1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga25aba7bafb8f63d71fb54c143d053fd1"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsXMP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaea4d09d1203e94c3010c56672ea6d711"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaea4d09d1203e94c3010c56672ea6d711"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSELECT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac03b2963ecda6cc08653294370baf8d8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac03b2963ecda6cc08653294370baf8d8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga16bca9ae0e87d001ed4242a83618f404"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga16bca9ae0e87d001ed4242a83618f404"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMARQUEE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gab9e88a5cd07c8645db3293062fbb2a51"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab9e88a5cd07c8645db3293062fbb2a51"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsEMBED</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga334efee28622bff3384c9eda4bb4eec5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga334efee28622bff3384c9eda4bb4eec5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsBASEFONT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6c18dbdbb887968b79753ae455f2c90a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6c18dbdbb887968b79753ae455f2c90a"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsISINDEX</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gac62bc0004bfc655a7a21b6b98ddc5e6c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac62bc0004bfc655a7a21b6b98ddc5e6c"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga9d56a0c1da9fdf018cb6db4398260295"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9d56a0c1da9fdf018cb6db4398260295"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsSTRIKE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gab28ee4ca158cb9122022719fdc08ec08"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab28ee4ca158cb9122022719fdc08ec08"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsU</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga41c2551e386adc53cd9ab0e00f707558"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga41c2551e386adc53cd9ab0e00f707558"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyNodeIsMENU</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga42c5074e590ed76a7a641dfd179471d9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga42c5074e590ed76a7a641dfd179471d9"></a>
-TidyAttrId TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetId</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga1e4d8ec29e240a6415b2caa7fff2b502"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1e4d8ec29e240a6415b2caa7fff2b502"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsEvent</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga9f52a0de76388df02294718c573911bd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9f52a0de76388df02294718c573911bd"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsProp</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga7c5dab5750d48c0849fb5afddcaf6ef1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7c5dab5750d48c0849fb5afddcaf6ef1"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsHREF</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga9e42faa67c4c67d1f20b17494bcd85ae"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9e42faa67c4c67d1f20b17494bcd85ae"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSRC</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga40eb7812272130ee672347252f8d2803"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga40eb7812272130ee672347252f8d2803"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsID</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga30a54710b484eac706e936a69fb95e29"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga30a54710b484eac706e936a69fb95e29"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsNAME</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gab2b19098f9cf2e7c74d8b424e086df43"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab2b19098f9cf2e7c74d8b424e086df43"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSUMMARY</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gad621c0fd59bdacd162dfdd769a62ef27"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad621c0fd59bdacd162dfdd769a62ef27"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsALT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga0a99b0a5db896cb47c8b40ef110370c8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0a99b0a5db896cb47c8b40ef110370c8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLONGDESC</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaeb125294c12e461615f32d9ffdb9bbd7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeb125294c12e461615f32d9ffdb9bbd7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsUSEMAP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga33c5307a710a27f636ca150112de3f7b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga33c5307a710a27f636ca150112de3f7b"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsISMAP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gac903236acff81674020778300c3a3862"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac903236acff81674020778300c3a3862"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLANGUAGE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga7a9c5c70693337edf09b36f483229fe5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7a9c5c70693337edf09b36f483229fe5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTYPE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga9454a023bc9f5663c56b8404ec8406c8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9454a023bc9f5663c56b8404ec8406c8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsVALUE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gac97bd371ff8401f13a333273e5e3bf22"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac97bd371ff8401f13a333273e5e3bf22"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsCONTENT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga6a47ddd81d777ff5a086bedc4e951040"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6a47ddd81d777ff5a086bedc4e951040"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTITLE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga1147ae3c7c35ba4d4241832733859b78"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1147ae3c7c35ba4d4241832733859b78"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsXMLNS</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga3e3baf9e8a4ebe112b1865f3eb4b51fe"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3e3baf9e8a4ebe112b1865f3eb4b51fe"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsDATAFLD</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga7c62cdc314ebba251cf25f0eeec02f56"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7c62cdc314ebba251cf25f0eeec02f56"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsWIDTH</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaeb9e235fbc570a2fd73584e9c5a992be"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaeb9e235fbc570a2fd73584e9c5a992be"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsHEIGHT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga9eb541ed5e3b751a5d1fc1350443b5e6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9eb541ed5e3b751a5d1fc1350443b5e6"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsFOR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga8a6824904535e40e3bdc2b17c4cf9dd2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8a6824904535e40e3bdc2b17c4cf9dd2"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSELECTED</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gae55a371bf3b146788b217be62499aa35"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae55a371bf3b146788b217be62499aa35"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsCHECKED</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gae8f47e206721fffc4eda7ca4af79e01e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae8f47e206721fffc4eda7ca4af79e01e"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLANG</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga315f297329d38bd0b69307e329699bd6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga315f297329d38bd0b69307e329699bd6"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTARGET</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaee94d3e34dd79b67e82c738e35076818"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaee94d3e34dd79b67e82c738e35076818"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsHTTP_EQUIV</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga58a482b3e743570dcb88b64b9c93f172"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga58a482b3e743570dcb88b64b9c93f172"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsREL</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gad69f1e1cf8a7cf6d70359b7344839e79"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad69f1e1cf8a7cf6d70359b7344839e79"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEMOVE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga1df15af0e642d1c1bd1bbc64ffd894e9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga1df15af0e642d1c1bd1bbc64ffd894e9"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEDOWN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga71c648c7d945d5d1a1da686813ef4149"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga71c648c7d945d5d1a1da686813ef4149"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEUP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga4e70306e72db98316ff36c07058667ec"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4e70306e72db98316ff36c07058667ec"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnCLICK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gadea7c51060ca59643fe1c4be493f70f8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadea7c51060ca59643fe1c4be493f70f8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEOVER</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gadba041c3573d5457fbee24356d4f59fc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadba041c3573d5457fbee24356d4f59fc"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnMOUSEOUT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga5699e85b46e535b657c70b47306a08db"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5699e85b46e535b657c70b47306a08db"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnKEYDOWN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaf4d69efe322c065fef448b5d5b48b8f7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf4d69efe322c065fef448b5d5b48b8f7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnKEYUP</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga9b08c6cf7ec3f3605722486c4ba42b4f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9b08c6cf7ec3f3605722486c4ba42b4f"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnKEYPRESS</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga54437cfd33daef01fd9d9e63b79a20f5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga54437cfd33daef01fd9d9e63b79a20f5"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnFOCUS</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gab704326c008f437a30878b8dd632ecca"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gab704326c008f437a30878b8dd632ecca"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsOnBLUR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gad75eb36382a280b90761cba07fcf1895"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad75eb36382a280b90761cba07fcf1895"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsBGCOLOR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga5d88a7dcf98264502e1a2a18014f58a7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5d88a7dcf98264502e1a2a18014f58a7"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsLINK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga73acdbe07d9f4263897c2d7ef2f55a8d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga73acdbe07d9f4263897c2d7ef2f55a8d"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsALINK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga502ead90e7b121fd1ae1b034a2a046da"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga502ead90e7b121fd1ae1b034a2a046da"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsVLINK</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga7c6fde56b1bb05a07043ac1b69a72db8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7c6fde56b1bb05a07043ac1b69a72db8"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsTEXT</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga93224d5a31b94c82a4f97577338c3a59"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga93224d5a31b94c82a4f97577338c3a59"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsSTYLE</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga763c7d67faa40b48a0485d4aaeddf694"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga763c7d67faa40b48a0485d4aaeddf694"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsABBR</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga69119cd18a1fb79bb02b78f8bf145f81"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga69119cd18a1fb79bb02b78f8bf145f81"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsCOLSPAN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:gaee7e2dfe999d6831d3af1e826dcf3c22"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaee7e2dfe999d6831d3af1e826dcf3c22"></a>
-Bool TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrIsROWSPAN</b> (<a class="el" href="structTidyAttr.html">TidyAttr</a> tattr)</td></tr>
-<tr class="memitem:ga5391e01ca5a2b497a7c044a25080468e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5391e01ca5a2b497a7c044a25080468e"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetById</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod, TidyAttrId attId)</td></tr>
-<tr class="memitem:ga32edc3c33e5aadcdd83efd60d3ac2a3e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga32edc3c33e5aadcdd83efd60d3ac2a3e"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetHREF</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga7869ea78760d5d62509940fc1f2c21ac"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga7869ea78760d5d62509940fc1f2c21ac"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSRC</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae3b3b79328600053c21dcb14cbc0ffa8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae3b3b79328600053c21dcb14cbc0ffa8"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetID</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaab8e86c4006c219832438ee0db0daf28"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaab8e86c4006c219832438ee0db0daf28"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetNAME</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga8f4d4e6e768186d11e516cc0e6b2407a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga8f4d4e6e768186d11e516cc0e6b2407a"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSUMMARY</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga0b3704beb81b411038692cd6a50a6812"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0b3704beb81b411038692cd6a50a6812"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetALT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafbeef23c8d7946a771c2179e41324e81"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafbeef23c8d7946a771c2179e41324e81"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLONGDESC</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga33e4dde55f16c04f7b2decbbf7b4d4a2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga33e4dde55f16c04f7b2decbbf7b4d4a2"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetUSEMAP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga13d19afccb2d2a369bbf93c6127adb1c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga13d19afccb2d2a369bbf93c6127adb1c"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetISMAP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga643d43c8c735054a60d5443fbed8a240"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga643d43c8c735054a60d5443fbed8a240"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLANGUAGE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4ad1d50bf2ba65bb32617e2fa2c41c67"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4ad1d50bf2ba65bb32617e2fa2c41c67"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTYPE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga044e7be2a5353e64aaa4b2a71089e10b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga044e7be2a5353e64aaa4b2a71089e10b"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetVALUE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaf29497f73685e92521ab620f65cb3140"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf29497f73685e92521ab620f65cb3140"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetCONTENT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga3da405f3a9e87534fd828cf081c58d03"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3da405f3a9e87534fd828cf081c58d03"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTITLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5d1fd6265f41c08ed5427c80316caa03"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5d1fd6265f41c08ed5427c80316caa03"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetXMLNS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga232436e2e4087c67502a12e8782e172e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga232436e2e4087c67502a12e8782e172e"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetDATAFLD</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga08bbf26729bf8a3f6c1390d26d3666d0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga08bbf26729bf8a3f6c1390d26d3666d0"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetWIDTH</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae148f282af56270d6e811b97268bca64"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae148f282af56270d6e811b97268bca64"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetHEIGHT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafe94b5b5ae7288d6d866f7b82703b82a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafe94b5b5ae7288d6d866f7b82703b82a"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetFOR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga048e47b2b4c2f14512c3d7f585b2d004"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga048e47b2b4c2f14512c3d7f585b2d004"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSELECTED</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga94406af9c9c20b1942cce43c506ecf61"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga94406af9c9c20b1942cce43c506ecf61"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetCHECKED</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga992d84e0b6b5b3f25c0e40c7b25bd13f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga992d84e0b6b5b3f25c0e40c7b25bd13f"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLANG</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafda31fbe48294c6feeef15449629341a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafda31fbe48294c6feeef15449629341a"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTARGET</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gad023e11b117601b6abdc4373db879d34"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gad023e11b117601b6abdc4373db879d34"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetHTTP_EQUIV</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga28306ff6130eab4c88fce32674326280"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga28306ff6130eab4c88fce32674326280"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetREL</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga9fed89179a23ad83c73948c045507095"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga9fed89179a23ad83c73948c045507095"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEMOVE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5c723febdf97b14e7339dede87b410e7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5c723febdf97b14e7339dede87b410e7"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEDOWN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaa218ed968a4b8fa50b43a4a549209077"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa218ed968a4b8fa50b43a4a549209077"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga38fe84b14dafb84b3f40968dc27b86e3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga38fe84b14dafb84b3f40968dc27b86e3"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnCLICK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga66be75bf699308d87172e0bf03100363"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga66be75bf699308d87172e0bf03100363"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEOVER</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga0b13bb4f3475afbded6e4ae6a2bdcf2b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0b13bb4f3475afbded6e4ae6a2bdcf2b"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnMOUSEOUT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaabfd3fbdaf97f83fe2da402d0cbe9e8e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaabfd3fbdaf97f83fe2da402d0cbe9e8e"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnKEYDOWN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga73473cc4d39d2fd70b860ebebcdc4815"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga73473cc4d39d2fd70b860ebebcdc4815"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnKEYUP</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga6beda5d89c91f6b387929b930832fb57"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga6beda5d89c91f6b387929b930832fb57"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnKEYPRESS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga4fd4f5b38f99d395b8a7e253cc45ef28"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga4fd4f5b38f99d395b8a7e253cc45ef28"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnFOCUS</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5a038e1439320c57c983da87efe64c3e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5a038e1439320c57c983da87efe64c3e"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetOnBLUR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gadcde1dd3d87752162067bdac5d2dd785"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gadcde1dd3d87752162067bdac5d2dd785"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetBGCOLOR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae8e7d8d65a20f14d6aa875493b195329"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae8e7d8d65a20f14d6aa875493b195329"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga49e3f791908e26561566587b0f15b37d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga49e3f791908e26561566587b0f15b37d"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetALINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gae46a7c41114c29766f9fa95c10b36f9d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gae46a7c41114c29766f9fa95c10b36f9d"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetVLINK</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga5c4b94ac9cfcbd403ce02690c9196388"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga5c4b94ac9cfcbd403ce02690c9196388"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetTEXT</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaa90006fbac322f2577db885c913c7d19"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaa90006fbac322f2577db885c913c7d19"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetSTYLE</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gaae1595d000373dd64c9dfe0a89d03597"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaae1595d000373dd64c9dfe0a89d03597"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetABBR</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:gafd6746350a6e8d7e324d0c309777f059"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gafd6746350a6e8d7e324d0c309777f059"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetCOLSPAN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-<tr class="memitem:ga837b3be1dc949e7989dcbf25deaf5b36"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga837b3be1dc949e7989dcbf25deaf5b36"></a>
-<a class="el" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL&#160;</td><td class="memItemRight" valign="bottom"><b>tidyAttrGetROWSPAN</b> (<a class="el" href="structTidyNode.html">TidyNode</a> tnod)</td></tr>
-</table>
-<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
-<div class="textblock"><ul>
-<li>Defines HTML Tidy API implemented by tidy library.</li>
-</ul>
-<p>Public interface is const-correct and doesn't explicitly depend on any globals. Thus, thread-safety may be introduced w/out changing the interface.</p>
-<p>Looking ahead to a C++ wrapper, C functions always pass this-equivalent as 1st arg.</p>
-<p>Copyright (c) 1998-2008 World Wide Web Consortium (Massachusetts Institute of Technology, European Research Consortium for Informatics and Mathematics, Keio University). All Rights Reserved.</p>
-<p>CVS Info :</p>
-<dl class="section rcs"><dt>Author:</b></dt><dd>arnaud02 </dd></dl>
-<dl class="section rcs"><dt>Date:</b></dt><dd>2008/04/22 11:00:42 </dd></dl>
-<dl class="section rcs"><dt>Revision:</b></dt><dd>1.22 </dd></dl>
-<p>Contributing Author(s):</p>
-<p>Dave Raggett <a href="#" onclick="location.href='mai'+'lto:'+'dsr'+'@w'+'3.o'+'rg'; return false;">dsr@w<span style="display: none;">.nosp@m.</span>3.or<span style="display: none;">.nosp@m.</span>g</a></p>
-<p>The contributing author(s) would like to thank all those who helped with testing, bug fixes and suggestions for improvements. This wouldn't have been possible without your help.</p>
-<p>COPYRIGHT NOTICE:</p>
-<p>This software and documentation is provided "as is," and the copyright holders and contributing author(s) make no representations or warranties, express or implied, including but not limited to, warranties of merchantability or fitness for any particular purpose or that the use of the software or documentation will not infringe any third party patents, copyrights, trademarks or other rights.</p>
-<p>The copyright holders and contributing author(s) will not be held liable for any direct, indirect, special or consequential damages arising out of any use of the software or documentation, even if advised of the possibility of such damage.</p>
-<p>Permission is hereby granted to use, copy, modify, and distribute this source code, or portions hereof, documentation and executables, for any purpose, without fee, subject to the following restrictions:</p>
-<ol type="1">
-<li>The origin of this source code must not be misrepresented.<ol type="a">
-<li>Altered versions must be plainly marked as such and must not be misrepresented as being the original source.</li>
-<li>This Copyright notice may not be removed or altered from any source or altered source distribution.</li>
-</ol>
-</li>
-</ol>
-<p>The copyright holders and contributing author(s) specifically permit, without fee, and encourage the use of this source code as a component for supporting the Hypertext Markup Language in commercial products. If you use this source code in a product, acknowledgment is not required but would be appreciated.</p>
-<p>Created 2001-05-20 by Charles Reitzel Updated 2002-07-01 by Charles Reitzel - 1st Implementation </p>
-</div></div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="tidy_8h.html">tidy.h</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidy_8h.js b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidy_8h.js
deleted file mode 100644
index e682e4f..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidy_8h.js
+++ /dev/null
@@ -1,307 +0,0 @@
-var tidy_8h =
-[
-    [ "EndOfStream", "group__IO.html#ga9a078b706ec6f37cce40958f6f68585a", null ],
-    [ "TidyBuffer", "tidy_8h.html#a8b2baca367b9029e506c454cc06c62c5", null ],
-    [ "TidyAllocatorVtbl", "group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8", null ],
-    [ "TidyAllocator", "group__Memory.html#ga78e96524a88db0c09e766795265863da", null ],
-    [ "TidyMalloc", "group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430", null ],
-    [ "TidyRealloc", "group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd", null ],
-    [ "TidyFree", "group__Memory.html#ga27931c443e424937ba47f0d4795aa35f", null ],
-    [ "TidyPanic", "group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c", null ],
-    [ "TidyOptCallback", "group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc", null ],
-    [ "TidyGetByteFunc", "group__IO.html#ga6951f79d4b50288e96a3896ab01393d6", null ],
-    [ "TidyUngetByteFunc", "group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371", null ],
-    [ "TidyEOFFunc", "group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972", null ],
-    [ "TidyInputSource", "group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb", null ],
-    [ "TidyPutByteFunc", "group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc", null ],
-    [ "TidyOutputSink", "group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98", null ],
-    [ "TidyReportFilter", "group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e", null ],
-    [ "opaque_type", "group__Opaque.html#ga1b209c260854e89f73101c18fe835516", null ],
-    [ "opaque_type", "group__Opaque.html#gafdaa7208b82ae763fbccb646035f9391", null ],
-    [ "opaque_type", "group__Opaque.html#gaa8d1f990e71bf7d6bc1b17974b7788a4", null ],
-    [ "opaque_type", "group__Opaque.html#ga236c416d715827e6db5691ce66415c2f", null ],
-    [ "tidySetMallocCall", "group__Memory.html#gab55079374527525e3374ebc4d2a1e625", null ],
-    [ "tidySetReallocCall", "group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30", null ],
-    [ "tidySetFreeCall", "group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7", null ],
-    [ "tidySetPanicCall", "group__Memory.html#gab12cc0435bacec1a8c725e02357acc00", null ],
-    [ "tidyCreate", "group__Basic.html#ga728e98da5985ecb26de7c6c45f7fcaf2", null ],
-    [ "tidyCreateWithAllocator", "group__Basic.html#gaf58ea992501470e0998182a1c75df2aa", null ],
-    [ "tidyRelease", "group__Basic.html#gacc380c1451088b89898a85337b113713", null ],
-    [ "tidySetAppData", "group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708", null ],
-    [ "tidyGetAppData", "group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504", null ],
-    [ "tidyReleaseDate", "group__Basic.html#gab7b404ada690635341d2e2d332102b36", null ],
-    [ "tidyStatus", "group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760", null ],
-    [ "tidyDetectedHtmlVersion", "group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443", null ],
-    [ "tidyDetectedXhtml", "group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d", null ],
-    [ "tidyDetectedGenericXml", "group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2", null ],
-    [ "tidyErrorCount", "group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d", null ],
-    [ "tidyWarningCount", "group__Basic.html#ga29b0c36f75584a2a26422b021561f19c", null ],
-    [ "tidyAccessWarningCount", "group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb", null ],
-    [ "tidyConfigErrorCount", "group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988", null ],
-    [ "tidyLoadConfig", "group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a", null ],
-    [ "tidyLoadConfigEnc", "group__Basic.html#gac677de148c6f00fc96a682c21433ab1c", null ],
-    [ "tidyFileExists", "group__Basic.html#gac10c770d6ea5a0610159ad17f8427943", null ],
-    [ "tidySetCharEncoding", "group__Basic.html#ga2612e184472c2a59ca822a37d030e9af", null ],
-    [ "tidySetInCharEncoding", "group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59", null ],
-    [ "tidySetOutCharEncoding", "group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9", null ],
-    [ "tidySetOptionCallback", "group__Configuration.html#gab94961700088d2daf8dcc012a5e33e49", null ],
-    [ "tidyOptGetIdForName", "group__Configuration.html#ga500f31ba81d015b8ce9dad6f2a6ade75", null ],
-    [ "tidyGetOptionList", "group__Configuration.html#gab92a35ffbd3b0b668534d63f94d2486f", null ],
-    [ "tidyGetNextOption", "group__Configuration.html#ga1a3088dacc539487e00f1eb4009dafc0", null ],
-    [ "tidyGetOption", "group__Configuration.html#ga030c695d6407b2756856eb1862642cfe", null ],
-    [ "tidyGetOptionByName", "group__Configuration.html#gaeae2e147645697fc54234ff2526a8108", null ],
-    [ "tidyOptGetId", "group__Configuration.html#ga51cf095b76921b4e290e14814998f096", null ],
-    [ "tidyOptGetName", "group__Configuration.html#gaf370cd2ea113747f50da185fda24adcb", null ],
-    [ "tidyOptGetType", "group__Configuration.html#ga06e2685cc2950b182ff2f7136d170a34", null ],
-    [ "tidyOptIsReadOnly", "group__Configuration.html#ga6aba2ccdb1237a70f5fe1393fee0ce4d", null ],
-    [ "tidyOptGetCategory", "group__Configuration.html#ga1d8b72e64e4d949dc21599fa788e842f", null ],
-    [ "tidyOptGetDefault", "group__Configuration.html#gab9e02c9927fe2c382ec5f81b4acf9cb4", null ],
-    [ "tidyOptGetDefaultInt", "group__Configuration.html#gafc8df35e864dd3a24f23aca3c2f8bd9d", null ],
-    [ "tidyOptGetDefaultBool", "group__Configuration.html#gadadea4da66e3718e02b720c2b59d170b", null ],
-    [ "tidyOptGetPickList", "group__Configuration.html#ga31f815fe2b5bf1e00d6b50be62edd0ab", null ],
-    [ "tidyOptGetNextPick", "group__Configuration.html#gad1366c5c458f38d2a9c6a6335e6704d9", null ],
-    [ "tidyOptGetValue", "group__Configuration.html#ga0fbe23ab1e4ec374fa38e6f514617e4d", null ],
-    [ "tidyOptSetValue", "group__Configuration.html#gaf37bdad3b6809d8cb78e7d6316d4ba69", null ],
-    [ "tidyOptParseValue", "group__Configuration.html#gad09fbcbbaf83fbf93e0d7be9c9bb30c0", null ],
-    [ "tidyOptGetInt", "group__Configuration.html#ga7ff683612d446b07318517e564cccc7a", null ],
-    [ "tidyOptSetInt", "group__Configuration.html#gad9e75a64c8dcbc54e791959cf934e1ad", null ],
-    [ "tidyOptGetBool", "group__Configuration.html#ga09e6c999e9e7ebc94ea3d9cf5d674125", null ],
-    [ "tidyOptSetBool", "group__Configuration.html#gac9de7e155bea5c28713f2bfb93614472", null ],
-    [ "tidyOptResetToDefault", "group__Configuration.html#ga2aa45ad67758ca0b18d14eafa37fe080", null ],
-    [ "tidyOptResetAllToDefault", "group__Configuration.html#ga874ce26884f0eeaf692c30758688888a", null ],
-    [ "tidyOptSnapshot", "group__Configuration.html#ga4beb2c73c90c3e2ae589c2642478cebd", null ],
-    [ "tidyOptResetToSnapshot", "group__Configuration.html#gae6212b8f32990763cc18a6d3f05eb191", null ],
-    [ "tidyOptDiffThanDefault", "group__Configuration.html#ga083cb42d6f4413604240b5c1b3aa2070", null ],
-    [ "tidyOptDiffThanSnapshot", "group__Configuration.html#ga793bc9e177aa90301802e44c4fc22e0e", null ],
-    [ "tidyOptCopyConfig", "group__Configuration.html#ga0b6cb26ab5dbbe0a0841d605fbd06fad", null ],
-    [ "tidyOptGetEncName", "group__Configuration.html#ga47f8502cc202fc7423937647957955a3", null ],
-    [ "tidyOptGetCurrPick", "group__Configuration.html#ga0785047cc73d5fbc88691861a0fa9c78", null ],
-    [ "tidyOptGetDeclTagList", "group__Configuration.html#ga55f30cf9e507f8fc66330ec3b0132620", null ],
-    [ "tidyOptGetNextDeclTag", "group__Configuration.html#gacec933eef8f9eec3dfa4382e05cab251", null ],
-    [ "tidyOptGetDoc", "group__Configuration.html#gafca3ed506463e192187133ff646a643d", null ],
-    [ "tidyOptGetDocLinksList", "group__Configuration.html#gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f", null ],
-    [ "tidyOptGetNextDocLinks", "group__Configuration.html#ga1db79a95067d6364c02263d9492fa9e8", null ],
-    [ "tidyInitSource", "group__IO.html#gab446af273e331cb0440dd01b6990d2d0", null ],
-    [ "tidyGetByte", "group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b", null ],
-    [ "tidyUngetByte", "group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7", null ],
-    [ "tidyIsEOF", "group__IO.html#ga399df5ba17614205964a665f7b1726a6", null ],
-    [ "tidyInitSink", "group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4", null ],
-    [ "tidyPutByte", "group__IO.html#ga2a34772782d7b786e37012fce4cd2425", null ],
-    [ "tidySetReportFilter", "group__IO.html#ga51e02523601388bb83c2555b995e68b0", null ],
-    [ "tidySetErrorFile", "group__IO.html#ga669758031bbd5d4ba957b19e77229c8b", null ],
-    [ "tidySetErrorBuffer", "group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b", null ],
-    [ "tidySetErrorSink", "group__IO.html#gad47c75f3af85e7927e7ac18918ec6363", null ],
-    [ "tidyParseFile", "group__Parse.html#ga5ec263f2e430dd9c9e10437f067b2a28", null ],
-    [ "tidyParseStdin", "group__Parse.html#ga96b41ff6e6a7f9d0b9b0e901e33ad31d", null ],
-    [ "tidyParseString", "group__Parse.html#ga50c02fa244dcd120ae339719c2132ff9", null ],
-    [ "tidyParseBuffer", "group__Parse.html#gaa28ce34c95750f150205843885317851", null ],
-    [ "tidyParseSource", "group__Parse.html#gaa65dad2a4ca5fa97d267ddefe1180e0e", null ],
-    [ "tidyCleanAndRepair", "group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269", null ],
-    [ "tidyRunDiagnostics", "group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77", null ],
-    [ "tidySaveFile", "group__Save.html#ga19ee6e2ee0e719a97cff443ebb19ae44", null ],
-    [ "tidySaveStdout", "group__Save.html#ga6638d1800ee63fc6bea19bc2bf582be2", null ],
-    [ "tidySaveBuffer", "group__Save.html#ga7e8642262c8c4d34cf7cc426647d29f0", null ],
-    [ "tidySaveString", "group__Save.html#gaf684fefd3e42f459cf0a4ebe937ce12b", null ],
-    [ "tidySaveSink", "group__Save.html#gaea985b28470453d0218092b137f71e77", null ],
-    [ "tidyOptSaveFile", "group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca", null ],
-    [ "tidyOptSaveSink", "group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee", null ],
-    [ "tidyErrorSummary", "group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70", null ],
-    [ "tidyGeneralInfo", "group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971", null ],
-    [ "tidyGetRoot", "group__Tree.html#gac70f893c5cd5805bf76b393ad07c93c6", null ],
-    [ "tidyGetHtml", "group__Tree.html#gae539f5031bd1e039458a7fffb07a2b7a", null ],
-    [ "tidyGetHead", "group__Tree.html#ga8bc403902d8535a6dab3efc29519d970", null ],
-    [ "tidyGetBody", "group__Tree.html#ga860430a9ae7b9d347f0f7eb4204b3046", null ],
-    [ "tidyGetParent", "group__Tree.html#ga0da0a16a07321623bda6a02a397111ca", null ],
-    [ "tidyGetChild", "group__Tree.html#ga0ef21eb446a56c3874a993b6f3966e73", null ],
-    [ "tidyGetNext", "group__Tree.html#ga60f48e1a0981ccfa027e62f73f0b1e7d", null ],
-    [ "tidyGetPrev", "group__Tree.html#ga7a277d67c8143a8dd66d6c4796e5afa2", null ],
-    [ "tidyAttrFirst", "group__Tree.html#ga7247560b46127ac69780b938d8bca177", null ],
-    [ "tidyAttrNext", "group__Tree.html#ga8af1c83f5c33e767ca40561341089bae", null ],
-    [ "tidyAttrName", "group__Tree.html#ga32dff6f721a553a54cee0324cda15ba7", null ],
-    [ "tidyAttrValue", "group__Tree.html#gaeb8f272e8135e744b9b3f006517f1073", null ],
-    [ "tidyNodeGetType", "group__NodeAsk.html#gaa9786b1ce44061e2811d1ecbcd76d318", null ],
-    [ "tidyNodeGetName", "group__NodeAsk.html#ga5ea4ecef06555a58f942b2c500722156", null ],
-    [ "tidyNodeIsText", "group__NodeAsk.html#ga446c2a5ed55a75685074585f007b52c5", null ],
-    [ "tidyNodeIsProp", "group__NodeAsk.html#ga2eb2b4a0ee75c74215de9859467d17f1", null ],
-    [ "tidyNodeIsHeader", "group__NodeAsk.html#ga69c929ff5987273560e683e44b2515eb", null ],
-    [ "tidyNodeHasText", "group__NodeAsk.html#ga4abc910dd180773665c6e2e4e30ea2d7", null ],
-    [ "tidyNodeGetText", "group__NodeAsk.html#ga174176952045d3a79500451eae0322d6", null ],
-    [ "tidyNodeGetValue", "group__NodeAsk.html#ga775c446f1fd1ffa25eb688af6c56853c", null ],
-    [ "tidyNodeGetId", "group__NodeAsk.html#ga30307d5b9937c7f0aad1f37d7cf7848c", null ],
-    [ "tidyNodeLine", "group__NodeAsk.html#ga98658b8c02e0d2000a6c7da5d916ced4", null ],
-    [ "tidyNodeColumn", "group__NodeAsk.html#ga00fb1f74d89419ad97f345660cd8876f", null ],
-    [ "tidyNodeIsHTML", "group__NodeIsElementName.html#gaf692f1ed40027be3f3cd5d198abc3ad2", null ],
-    [ "tidyNodeIsHEAD", "group__NodeIsElementName.html#ga59e3d8737230aaf6aefd38923b2d9938", null ],
-    [ "tidyNodeIsTITLE", "group__NodeIsElementName.html#ga41c163de846f0a5f0a06f8e8ba1559cc", null ],
-    [ "tidyNodeIsBASE", "group__NodeIsElementName.html#ga9c09a80c0fbb47c46c48816217058067", null ],
-    [ "tidyNodeIsMETA", "group__NodeIsElementName.html#gaeecc06fcf1ead446d89e2da189124a84", null ],
-    [ "tidyNodeIsBODY", "group__NodeIsElementName.html#gacba5807618c3f9e55cc03ff87de9b7ce", null ],
-    [ "tidyNodeIsFRAMESET", "group__NodeIsElementName.html#gae1ea58f48b98e27dc9e4489937f17755", null ],
-    [ "tidyNodeIsFRAME", "group__NodeIsElementName.html#gacb9bcd9b662a2089064a3c240062c99f", null ],
-    [ "tidyNodeIsIFRAME", "group__NodeIsElementName.html#ga816d167ba4cb8b3787967ec3dbde5ec5", null ],
-    [ "tidyNodeIsNOFRAMES", "group__NodeIsElementName.html#ga8320b595afb1e7e167b7c1a79b0dc366", null ],
-    [ "tidyNodeIsHR", "group__NodeIsElementName.html#ga51ace62a3ec1c51035cabf4a2605d898", null ],
-    [ "tidyNodeIsH1", "group__NodeIsElementName.html#gac28ca322aabade5ec3a7a7601c72ee16", null ],
-    [ "tidyNodeIsH2", "group__NodeIsElementName.html#gaa6f4c167e5934e14fd2bc016cbcb5abd", null ],
-    [ "tidyNodeIsPRE", "group__NodeIsElementName.html#ga0603085c30d94973f5d9d5b5de2ff200", null ],
-    [ "tidyNodeIsLISTING", "group__NodeIsElementName.html#gafc3aadf1d5eaab9c59ce47bfc2b6ceae", null ],
-    [ "tidyNodeIsP", "group__NodeIsElementName.html#gafd77569c4993bcd4ded3b97608248b9e", null ],
-    [ "tidyNodeIsUL", "group__NodeIsElementName.html#gadde0e35eef49567f98c385a736588409", null ],
-    [ "tidyNodeIsOL", "group__NodeIsElementName.html#ga52d9c5612a982cc71602b5088f415879", null ],
-    [ "tidyNodeIsDL", "group__NodeIsElementName.html#gadb2e0e0fbeac0da447fd96fc75158f54", null ],
-    [ "tidyNodeIsDIR", "group__NodeIsElementName.html#gaac81f7e14fa7e59aa4fa8d4aa6d06268", null ],
-    [ "tidyNodeIsLI", "group__NodeIsElementName.html#gac6269b21e8ad6e21d66bd5addd77eb87", null ],
-    [ "tidyNodeIsDT", "group__NodeIsElementName.html#ga3a0c0bc0925bd40677da0286d8b27d7b", null ],
-    [ "tidyNodeIsDD", "group__NodeIsElementName.html#ga8517c2217955d3602426c2bda1da6402", null ],
-    [ "tidyNodeIsTABLE", "group__NodeIsElementName.html#gad88dbaf421328ad0026a0f6c5b471a28", null ],
-    [ "tidyNodeIsCAPTION", "group__NodeIsElementName.html#ga2493322b8c7ec6e7001e928bd71fc1b6", null ],
-    [ "tidyNodeIsTD", "group__NodeIsElementName.html#ga7de8f8de16a810da710ff0981a08d43d", null ],
-    [ "tidyNodeIsTH", "group__NodeIsElementName.html#gae4f6572db3d4bce835660e21f18b1983", null ],
-    [ "tidyNodeIsTR", "group__NodeIsElementName.html#ga6d2aafe8789a16ab429c5fdf9deb0da7", null ],
-    [ "tidyNodeIsCOL", "group__NodeIsElementName.html#ga4638800893b9ae5a70cdb74c06c6a79c", null ],
-    [ "tidyNodeIsCOLGROUP", "group__NodeIsElementName.html#ga385a0cd988f64c8a4bd67d9b198d2ea7", null ],
-    [ "tidyNodeIsBR", "group__NodeIsElementName.html#gaf0950a14b5b1ab4789b9b0a5bac0b18e", null ],
-    [ "tidyNodeIsA", "group__NodeIsElementName.html#gae73ab4feaf47cba0fe76ad6ceaaf45a5", null ],
-    [ "tidyNodeIsLINK", "group__NodeIsElementName.html#gac798ba0aa726aee5cbcf3262624c0458", null ],
-    [ "tidyNodeIsB", "group__NodeIsElementName.html#ga95af7c22df42cdc104858b6ef545c356", null ],
-    [ "tidyNodeIsI", "group__NodeIsElementName.html#gafe4ee40e682872ae83dfce0dd4a8d0c3", null ],
-    [ "tidyNodeIsSTRONG", "group__NodeIsElementName.html#ga15ea33b5dc08b426720d0c57cbecaced", null ],
-    [ "tidyNodeIsEM", "group__NodeIsElementName.html#ga445cccfc6c19f8f3b73ebd06a361bd48", null ],
-    [ "tidyNodeIsBIG", "group__NodeIsElementName.html#ga22e67a4b6c14214d35ad295a82509842", null ],
-    [ "tidyNodeIsSMALL", "group__NodeIsElementName.html#ga48af9e160f669f778de274336096e2eb", null ],
-    [ "tidyNodeIsPARAM", "group__NodeIsElementName.html#ga48067f28cfe217c9fc060650d0e3aca4", null ],
-    [ "tidyNodeIsOPTION", "group__NodeIsElementName.html#ga7f8b52642e3255b0480f48075dab8d6f", null ],
-    [ "tidyNodeIsOPTGROUP", "group__NodeIsElementName.html#gafe0455c4b138bffa99a913b8f3a9104f", null ],
-    [ "tidyNodeIsIMG", "group__NodeIsElementName.html#gafa4f741c56492e05bd351af1f0111f4e", null ],
-    [ "tidyNodeIsMAP", "group__NodeIsElementName.html#ga99beb2cb511391d1aca45fb85cedf27a", null ],
-    [ "tidyNodeIsAREA", "group__NodeIsElementName.html#gac266b333729c7430b5c73c61769f2786", null ],
-    [ "tidyNodeIsNOBR", "group__NodeIsElementName.html#ga6f0a957c81b4013ced6cbc4e7d8db2af", null ],
-    [ "tidyNodeIsWBR", "group__NodeIsElementName.html#ga89ed82add2b5524bb5cf08f382eb5116", null ],
-    [ "tidyNodeIsFONT", "group__NodeIsElementName.html#ga53c827624431293012ca7cfde97c937e", null ],
-    [ "tidyNodeIsLAYER", "group__NodeIsElementName.html#gaf238482802b2fb6e9e0b5b041d3b7611", null ],
-    [ "tidyNodeIsSPACER", "group__NodeIsElementName.html#ga445b2216e08962ebc2cf2013dd911969", null ],
-    [ "tidyNodeIsCENTER", "group__NodeIsElementName.html#ga6195cdbb5617b5240519b5a993f69592", null ],
-    [ "tidyNodeIsSTYLE", "group__NodeIsElementName.html#ga3e7e0649d24765c37404b64837dde32b", null ],
-    [ "tidyNodeIsSCRIPT", "group__NodeIsElementName.html#ga86627d1d0706847ff3087e196819706f", null ],
-    [ "tidyNodeIsNOSCRIPT", "group__NodeIsElementName.html#ga19d096d6eff710ef6c7a154ba8e4c71c", null ],
-    [ "tidyNodeIsFORM", "group__NodeIsElementName.html#ga507a029656b570eac822ea40122571d8", null ],
-    [ "tidyNodeIsTEXTAREA", "group__NodeIsElementName.html#ga8bd6a34ea2f61d687d24f12a49c51128", null ],
-    [ "tidyNodeIsBLOCKQUOTE", "group__NodeIsElementName.html#gabbbd873b72e446a8668c7c69582404e2", null ],
-    [ "tidyNodeIsAPPLET", "group__NodeIsElementName.html#gadfa5afb9f719c21667e98df09f043dd6", null ],
-    [ "tidyNodeIsOBJECT", "group__NodeIsElementName.html#gaf8c3d48a3d23f49a9d6e373ae18456c4", null ],
-    [ "tidyNodeIsDIV", "group__NodeIsElementName.html#gae423fbaf8bb2b2d7faf427ebb853159e", null ],
-    [ "tidyNodeIsSPAN", "group__NodeIsElementName.html#ga86ade270327fb3afa6d8f881fda3089e", null ],
-    [ "tidyNodeIsINPUT", "group__NodeIsElementName.html#ga648890464b129cbceaf749f912f6527e", null ],
-    [ "tidyNodeIsQ", "group__NodeIsElementName.html#ga6ef21bfc5033fd69c9f94e794d536fdb", null ],
-    [ "tidyNodeIsLABEL", "group__NodeIsElementName.html#ga7e4e65b0819e33ffdc38183f5dbf2785", null ],
-    [ "tidyNodeIsH3", "group__NodeIsElementName.html#ga4d49e513f271e3c1de40a2ca5bb507a5", null ],
-    [ "tidyNodeIsH4", "group__NodeIsElementName.html#ga8efaa17098b9b4c7be3f4c8a9edd5f37", null ],
-    [ "tidyNodeIsH5", "group__NodeIsElementName.html#gaa929252184f6d11fde69ee76f212822a", null ],
-    [ "tidyNodeIsH6", "group__NodeIsElementName.html#ga4b3bad82463198c3893c901aa20af219", null ],
-    [ "tidyNodeIsADDRESS", "group__NodeIsElementName.html#ga5ba4012b1bf4eb54b5042832f9a138e0", null ],
-    [ "tidyNodeIsXMP", "group__NodeIsElementName.html#ga25aba7bafb8f63d71fb54c143d053fd1", null ],
-    [ "tidyNodeIsSELECT", "group__NodeIsElementName.html#gaea4d09d1203e94c3010c56672ea6d711", null ],
-    [ "tidyNodeIsBLINK", "group__NodeIsElementName.html#gac03b2963ecda6cc08653294370baf8d8", null ],
-    [ "tidyNodeIsMARQUEE", "group__NodeIsElementName.html#ga16bca9ae0e87d001ed4242a83618f404", null ],
-    [ "tidyNodeIsEMBED", "group__NodeIsElementName.html#gab9e88a5cd07c8645db3293062fbb2a51", null ],
-    [ "tidyNodeIsBASEFONT", "group__NodeIsElementName.html#ga334efee28622bff3384c9eda4bb4eec5", null ],
-    [ "tidyNodeIsISINDEX", "group__NodeIsElementName.html#ga6c18dbdbb887968b79753ae455f2c90a", null ],
-    [ "tidyNodeIsS", "group__NodeIsElementName.html#gac62bc0004bfc655a7a21b6b98ddc5e6c", null ],
-    [ "tidyNodeIsSTRIKE", "group__NodeIsElementName.html#ga9d56a0c1da9fdf018cb6db4398260295", null ],
-    [ "tidyNodeIsU", "group__NodeIsElementName.html#gab28ee4ca158cb9122022719fdc08ec08", null ],
-    [ "tidyNodeIsMENU", "group__NodeIsElementName.html#ga41c2551e386adc53cd9ab0e00f707558", null ],
-    [ "tidyAttrGetId", "group__Attribute.html#ga42c5074e590ed76a7a641dfd179471d9", null ],
-    [ "tidyAttrIsEvent", "group__Attribute.html#ga1e4d8ec29e240a6415b2caa7fff2b502", null ],
-    [ "tidyAttrIsProp", "group__Attribute.html#ga9f52a0de76388df02294718c573911bd", null ],
-    [ "tidyAttrIsHREF", "group__AttrIsAttributeName.html#ga7c5dab5750d48c0849fb5afddcaf6ef1", null ],
-    [ "tidyAttrIsSRC", "group__AttrIsAttributeName.html#ga9e42faa67c4c67d1f20b17494bcd85ae", null ],
-    [ "tidyAttrIsID", "group__AttrIsAttributeName.html#ga40eb7812272130ee672347252f8d2803", null ],
-    [ "tidyAttrIsNAME", "group__AttrIsAttributeName.html#ga30a54710b484eac706e936a69fb95e29", null ],
-    [ "tidyAttrIsSUMMARY", "group__AttrIsAttributeName.html#gab2b19098f9cf2e7c74d8b424e086df43", null ],
-    [ "tidyAttrIsALT", "group__AttrIsAttributeName.html#gad621c0fd59bdacd162dfdd769a62ef27", null ],
-    [ "tidyAttrIsLONGDESC", "group__AttrIsAttributeName.html#ga0a99b0a5db896cb47c8b40ef110370c8", null ],
-    [ "tidyAttrIsUSEMAP", "group__AttrIsAttributeName.html#gaeb125294c12e461615f32d9ffdb9bbd7", null ],
-    [ "tidyAttrIsISMAP", "group__AttrIsAttributeName.html#ga33c5307a710a27f636ca150112de3f7b", null ],
-    [ "tidyAttrIsLANGUAGE", "group__AttrIsAttributeName.html#gac903236acff81674020778300c3a3862", null ],
-    [ "tidyAttrIsTYPE", "group__AttrIsAttributeName.html#ga7a9c5c70693337edf09b36f483229fe5", null ],
-    [ "tidyAttrIsVALUE", "group__AttrIsAttributeName.html#ga9454a023bc9f5663c56b8404ec8406c8", null ],
-    [ "tidyAttrIsCONTENT", "group__AttrIsAttributeName.html#gac97bd371ff8401f13a333273e5e3bf22", null ],
-    [ "tidyAttrIsTITLE", "group__AttrIsAttributeName.html#ga6a47ddd81d777ff5a086bedc4e951040", null ],
-    [ "tidyAttrIsXMLNS", "group__AttrIsAttributeName.html#ga1147ae3c7c35ba4d4241832733859b78", null ],
-    [ "tidyAttrIsDATAFLD", "group__AttrIsAttributeName.html#ga3e3baf9e8a4ebe112b1865f3eb4b51fe", null ],
-    [ "tidyAttrIsWIDTH", "group__AttrIsAttributeName.html#ga7c62cdc314ebba251cf25f0eeec02f56", null ],
-    [ "tidyAttrIsHEIGHT", "group__AttrIsAttributeName.html#gaeb9e235fbc570a2fd73584e9c5a992be", null ],
-    [ "tidyAttrIsFOR", "group__AttrIsAttributeName.html#ga9eb541ed5e3b751a5d1fc1350443b5e6", null ],
-    [ "tidyAttrIsSELECTED", "group__AttrIsAttributeName.html#ga8a6824904535e40e3bdc2b17c4cf9dd2", null ],
-    [ "tidyAttrIsCHECKED", "group__AttrIsAttributeName.html#gae55a371bf3b146788b217be62499aa35", null ],
-    [ "tidyAttrIsLANG", "group__AttrIsAttributeName.html#gae8f47e206721fffc4eda7ca4af79e01e", null ],
-    [ "tidyAttrIsTARGET", "group__AttrIsAttributeName.html#ga315f297329d38bd0b69307e329699bd6", null ],
-    [ "tidyAttrIsHTTP_EQUIV", "group__AttrIsAttributeName.html#gaee94d3e34dd79b67e82c738e35076818", null ],
-    [ "tidyAttrIsREL", "group__AttrIsAttributeName.html#ga58a482b3e743570dcb88b64b9c93f172", null ],
-    [ "tidyAttrIsOnMOUSEMOVE", "group__AttrIsAttributeName.html#gad69f1e1cf8a7cf6d70359b7344839e79", null ],
-    [ "tidyAttrIsOnMOUSEDOWN", "group__AttrIsAttributeName.html#ga1df15af0e642d1c1bd1bbc64ffd894e9", null ],
-    [ "tidyAttrIsOnMOUSEUP", "group__AttrIsAttributeName.html#ga71c648c7d945d5d1a1da686813ef4149", null ],
-    [ "tidyAttrIsOnCLICK", "group__AttrIsAttributeName.html#ga4e70306e72db98316ff36c07058667ec", null ],
-    [ "tidyAttrIsOnMOUSEOVER", "group__AttrIsAttributeName.html#gadea7c51060ca59643fe1c4be493f70f8", null ],
-    [ "tidyAttrIsOnMOUSEOUT", "group__AttrIsAttributeName.html#gadba041c3573d5457fbee24356d4f59fc", null ],
-    [ "tidyAttrIsOnKEYDOWN", "group__AttrIsAttributeName.html#ga5699e85b46e535b657c70b47306a08db", null ],
-    [ "tidyAttrIsOnKEYUP", "group__AttrIsAttributeName.html#gaf4d69efe322c065fef448b5d5b48b8f7", null ],
-    [ "tidyAttrIsOnKEYPRESS", "group__AttrIsAttributeName.html#ga9b08c6cf7ec3f3605722486c4ba42b4f", null ],
-    [ "tidyAttrIsOnFOCUS", "group__AttrIsAttributeName.html#ga54437cfd33daef01fd9d9e63b79a20f5", null ],
-    [ "tidyAttrIsOnBLUR", "group__AttrIsAttributeName.html#gab704326c008f437a30878b8dd632ecca", null ],
-    [ "tidyAttrIsBGCOLOR", "group__AttrIsAttributeName.html#gad75eb36382a280b90761cba07fcf1895", null ],
-    [ "tidyAttrIsLINK", "group__AttrIsAttributeName.html#ga5d88a7dcf98264502e1a2a18014f58a7", null ],
-    [ "tidyAttrIsALINK", "group__AttrIsAttributeName.html#ga73acdbe07d9f4263897c2d7ef2f55a8d", null ],
-    [ "tidyAttrIsVLINK", "group__AttrIsAttributeName.html#ga502ead90e7b121fd1ae1b034a2a046da", null ],
-    [ "tidyAttrIsTEXT", "group__AttrIsAttributeName.html#ga7c6fde56b1bb05a07043ac1b69a72db8", null ],
-    [ "tidyAttrIsSTYLE", "group__AttrIsAttributeName.html#ga93224d5a31b94c82a4f97577338c3a59", null ],
-    [ "tidyAttrIsABBR", "group__AttrIsAttributeName.html#ga763c7d67faa40b48a0485d4aaeddf694", null ],
-    [ "tidyAttrIsCOLSPAN", "group__AttrIsAttributeName.html#ga69119cd18a1fb79bb02b78f8bf145f81", null ],
-    [ "tidyAttrIsROWSPAN", "group__AttrIsAttributeName.html#gaee7e2dfe999d6831d3af1e826dcf3c22", null ],
-    [ "tidyAttrGetById", "group__AttrGet.html#ga5391e01ca5a2b497a7c044a25080468e", null ],
-    [ "tidyAttrGetHREF", "group__AttrGetAttributeName.html#ga32edc3c33e5aadcdd83efd60d3ac2a3e", null ],
-    [ "tidyAttrGetSRC", "group__AttrGetAttributeName.html#ga7869ea78760d5d62509940fc1f2c21ac", null ],
-    [ "tidyAttrGetID", "group__AttrGetAttributeName.html#gae3b3b79328600053c21dcb14cbc0ffa8", null ],
-    [ "tidyAttrGetNAME", "group__AttrGetAttributeName.html#gaab8e86c4006c219832438ee0db0daf28", null ],
-    [ "tidyAttrGetSUMMARY", "group__AttrGetAttributeName.html#ga8f4d4e6e768186d11e516cc0e6b2407a", null ],
-    [ "tidyAttrGetALT", "group__AttrGetAttributeName.html#ga0b3704beb81b411038692cd6a50a6812", null ],
-    [ "tidyAttrGetLONGDESC", "group__AttrGetAttributeName.html#gafbeef23c8d7946a771c2179e41324e81", null ],
-    [ "tidyAttrGetUSEMAP", "group__AttrGetAttributeName.html#ga33e4dde55f16c04f7b2decbbf7b4d4a2", null ],
-    [ "tidyAttrGetISMAP", "group__AttrGetAttributeName.html#ga13d19afccb2d2a369bbf93c6127adb1c", null ],
-    [ "tidyAttrGetLANGUAGE", "group__AttrGetAttributeName.html#ga643d43c8c735054a60d5443fbed8a240", null ],
-    [ "tidyAttrGetTYPE", "group__AttrGetAttributeName.html#ga4ad1d50bf2ba65bb32617e2fa2c41c67", null ],
-    [ "tidyAttrGetVALUE", "group__AttrGetAttributeName.html#ga044e7be2a5353e64aaa4b2a71089e10b", null ],
-    [ "tidyAttrGetCONTENT", "group__AttrGetAttributeName.html#gaf29497f73685e92521ab620f65cb3140", null ],
-    [ "tidyAttrGetTITLE", "group__AttrGetAttributeName.html#ga3da405f3a9e87534fd828cf081c58d03", null ],
-    [ "tidyAttrGetXMLNS", "group__AttrGetAttributeName.html#ga5d1fd6265f41c08ed5427c80316caa03", null ],
-    [ "tidyAttrGetDATAFLD", "group__AttrGetAttributeName.html#ga232436e2e4087c67502a12e8782e172e", null ],
-    [ "tidyAttrGetWIDTH", "group__AttrGetAttributeName.html#ga08bbf26729bf8a3f6c1390d26d3666d0", null ],
-    [ "tidyAttrGetHEIGHT", "group__AttrGetAttributeName.html#gae148f282af56270d6e811b97268bca64", null ],
-    [ "tidyAttrGetFOR", "group__AttrGetAttributeName.html#gafe94b5b5ae7288d6d866f7b82703b82a", null ],
-    [ "tidyAttrGetSELECTED", "group__AttrGetAttributeName.html#ga048e47b2b4c2f14512c3d7f585b2d004", null ],
-    [ "tidyAttrGetCHECKED", "group__AttrGetAttributeName.html#ga94406af9c9c20b1942cce43c506ecf61", null ],
-    [ "tidyAttrGetLANG", "group__AttrGetAttributeName.html#ga992d84e0b6b5b3f25c0e40c7b25bd13f", null ],
-    [ "tidyAttrGetTARGET", "group__AttrGetAttributeName.html#gafda31fbe48294c6feeef15449629341a", null ],
-    [ "tidyAttrGetHTTP_EQUIV", "group__AttrGetAttributeName.html#gad023e11b117601b6abdc4373db879d34", null ],
-    [ "tidyAttrGetREL", "group__AttrGetAttributeName.html#ga28306ff6130eab4c88fce32674326280", null ],
-    [ "tidyAttrGetOnMOUSEMOVE", "group__AttrGetAttributeName.html#ga9fed89179a23ad83c73948c045507095", null ],
-    [ "tidyAttrGetOnMOUSEDOWN", "group__AttrGetAttributeName.html#ga5c723febdf97b14e7339dede87b410e7", null ],
-    [ "tidyAttrGetOnMOUSEUP", "group__AttrGetAttributeName.html#gaa218ed968a4b8fa50b43a4a549209077", null ],
-    [ "tidyAttrGetOnCLICK", "group__AttrGetAttributeName.html#ga38fe84b14dafb84b3f40968dc27b86e3", null ],
-    [ "tidyAttrGetOnMOUSEOVER", "group__AttrGetAttributeName.html#ga66be75bf699308d87172e0bf03100363", null ],
-    [ "tidyAttrGetOnMOUSEOUT", "group__AttrGetAttributeName.html#ga0b13bb4f3475afbded6e4ae6a2bdcf2b", null ],
-    [ "tidyAttrGetOnKEYDOWN", "group__AttrGetAttributeName.html#gaabfd3fbdaf97f83fe2da402d0cbe9e8e", null ],
-    [ "tidyAttrGetOnKEYUP", "group__AttrGetAttributeName.html#ga73473cc4d39d2fd70b860ebebcdc4815", null ],
-    [ "tidyAttrGetOnKEYPRESS", "group__AttrGetAttributeName.html#ga6beda5d89c91f6b387929b930832fb57", null ],
-    [ "tidyAttrGetOnFOCUS", "group__AttrGetAttributeName.html#ga4fd4f5b38f99d395b8a7e253cc45ef28", null ],
-    [ "tidyAttrGetOnBLUR", "group__AttrGetAttributeName.html#ga5a038e1439320c57c983da87efe64c3e", null ],
-    [ "tidyAttrGetBGCOLOR", "group__AttrGetAttributeName.html#gadcde1dd3d87752162067bdac5d2dd785", null ],
-    [ "tidyAttrGetLINK", "group__AttrGetAttributeName.html#gae8e7d8d65a20f14d6aa875493b195329", null ],
-    [ "tidyAttrGetALINK", "group__AttrGetAttributeName.html#ga49e3f791908e26561566587b0f15b37d", null ],
-    [ "tidyAttrGetVLINK", "group__AttrGetAttributeName.html#gae46a7c41114c29766f9fa95c10b36f9d", null ],
-    [ "tidyAttrGetTEXT", "group__AttrGetAttributeName.html#ga5c4b94ac9cfcbd403ce02690c9196388", null ],
-    [ "tidyAttrGetSTYLE", "group__AttrGetAttributeName.html#gaa90006fbac322f2577db885c913c7d19", null ],
-    [ "tidyAttrGetABBR", "group__AttrGetAttributeName.html#gaae1595d000373dd64c9dfe0a89d03597", null ],
-    [ "tidyAttrGetCOLSPAN", "group__AttrGetAttributeName.html#gafd6746350a6e8d7e324d0c309777f059", null ],
-    [ "tidyAttrGetROWSPAN", "group__AttrGetAttributeName.html#ga837b3be1dc949e7989dcbf25deaf5b36", null ]
-];
\ No newline at end of file
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidy_8h_source.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidy_8h_source.html
deleted file mode 100644
index 64948f8..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidy_8h_source.html
+++ /dev/null
@@ -1,1177 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: tidy.h Source File</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('tidy_8h.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">tidy.h</div>  </div>
-</div><!--header-->
-<div class="contents">
-<a href="tidy_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="preprocessor">#ifndef __TIDY_H__</span>
-<a name="l00002"></a>00002 <span class="preprocessor"></span><span class="preprocessor">#define __TIDY_H__</span>
-<a name="l00003"></a>00003 <span class="preprocessor"></span><span class="comment"></span>
-<a name="l00004"></a>00004 <span class="comment">/** @file tidy.h - Defines HTML Tidy API implemented by tidy library.</span>
-<a name="l00005"></a>00005 <span class="comment"></span>
-<a name="l00006"></a>00006 <span class="comment">  Public interface is const-correct and doesn&#39;t explicitly depend</span>
-<a name="l00007"></a>00007 <span class="comment">  on any globals.  Thus, thread-safety may be introduced w/out</span>
-<a name="l00008"></a>00008 <span class="comment">  changing the interface.</span>
-<a name="l00009"></a>00009 <span class="comment"></span>
-<a name="l00010"></a>00010 <span class="comment">  Looking ahead to a C++ wrapper, C functions always pass </span>
-<a name="l00011"></a>00011 <span class="comment">  this-equivalent as 1st arg.</span>
-<a name="l00012"></a>00012 <span class="comment"></span>
-<a name="l00013"></a>00013 <span class="comment"></span>
-<a name="l00014"></a>00014 <span class="comment">  Copyright (c) 1998-2008 World Wide Web Consortium</span>
-<a name="l00015"></a>00015 <span class="comment">  (Massachusetts Institute of Technology, European Research </span>
-<a name="l00016"></a>00016 <span class="comment">  Consortium for Informatics and Mathematics, Keio University).</span>
-<a name="l00017"></a>00017 <span class="comment">  All Rights Reserved.</span>
-<a name="l00018"></a>00018 <span class="comment"></span>
-<a name="l00019"></a>00019 <span class="comment">  CVS Info :</span>
-<a name="l00020"></a>00020 <span class="comment"></span>
-<a name="l00021"></a>00021 <span class="comment">    $Author: arnaud02 $ </span>
-<a name="l00022"></a>00022 <span class="comment">    $Date: 2008/04/22 11:00:42 $ </span>
-<a name="l00023"></a>00023 <span class="comment">    $Revision: 1.22 $ </span>
-<a name="l00024"></a>00024 <span class="comment"></span>
-<a name="l00025"></a>00025 <span class="comment">  Contributing Author(s):</span>
-<a name="l00026"></a>00026 <span class="comment"></span>
-<a name="l00027"></a>00027 <span class="comment">     Dave Raggett &lt;dsr@w3.org&gt;</span>
-<a name="l00028"></a>00028 <span class="comment"></span>
-<a name="l00029"></a>00029 <span class="comment">  The contributing author(s) would like to thank all those who</span>
-<a name="l00030"></a>00030 <span class="comment">  helped with testing, bug fixes and suggestions for improvements. </span>
-<a name="l00031"></a>00031 <span class="comment">  This wouldn&#39;t have been possible without your help.</span>
-<a name="l00032"></a>00032 <span class="comment"></span>
-<a name="l00033"></a>00033 <span class="comment">  COPYRIGHT NOTICE:</span>
-<a name="l00034"></a>00034 <span class="comment"> </span>
-<a name="l00035"></a>00035 <span class="comment">  This software and documentation is provided &quot;as is,&quot; and</span>
-<a name="l00036"></a>00036 <span class="comment">  the copyright holders and contributing author(s) make no</span>
-<a name="l00037"></a>00037 <span class="comment">  representations or warranties, express or implied, including</span>
-<a name="l00038"></a>00038 <span class="comment">  but not limited to, warranties of merchantability or fitness</span>
-<a name="l00039"></a>00039 <span class="comment">  for any particular purpose or that the use of the software or</span>
-<a name="l00040"></a>00040 <span class="comment">  documentation will not infringe any third party patents,</span>
-<a name="l00041"></a>00041 <span class="comment">  copyrights, trademarks or other rights. </span>
-<a name="l00042"></a>00042 <span class="comment"></span>
-<a name="l00043"></a>00043 <span class="comment">  The copyright holders and contributing author(s) will not be held</span>
-<a name="l00044"></a>00044 <span class="comment">  liable for any direct, indirect, special or consequential damages</span>
-<a name="l00045"></a>00045 <span class="comment">  arising out of any use of the software or documentation, even if</span>
-<a name="l00046"></a>00046 <span class="comment">  advised of the possibility of such damage.</span>
-<a name="l00047"></a>00047 <span class="comment"></span>
-<a name="l00048"></a>00048 <span class="comment">  Permission is hereby granted to use, copy, modify, and distribute</span>
-<a name="l00049"></a>00049 <span class="comment">  this source code, or portions hereof, documentation and executables,</span>
-<a name="l00050"></a>00050 <span class="comment">  for any purpose, without fee, subject to the following restrictions:</span>
-<a name="l00051"></a>00051 <span class="comment"></span>
-<a name="l00052"></a>00052 <span class="comment">  1. The origin of this source code must not be misrepresented.</span>
-<a name="l00053"></a>00053 <span class="comment">  2. Altered versions must be plainly marked as such and must</span>
-<a name="l00054"></a>00054 <span class="comment">     not be misrepresented as being the original source.</span>
-<a name="l00055"></a>00055 <span class="comment">  3. This Copyright notice may not be removed or altered from any</span>
-<a name="l00056"></a>00056 <span class="comment">     source or altered source distribution.</span>
-<a name="l00057"></a>00057 <span class="comment"> </span>
-<a name="l00058"></a>00058 <span class="comment">  The copyright holders and contributing author(s) specifically</span>
-<a name="l00059"></a>00059 <span class="comment">  permit, without fee, and encourage the use of this source code</span>
-<a name="l00060"></a>00060 <span class="comment">  as a component for supporting the Hypertext Markup Language in</span>
-<a name="l00061"></a>00061 <span class="comment">  commercial products. If you use this source code in a product,</span>
-<a name="l00062"></a>00062 <span class="comment">  acknowledgment is not required but would be appreciated.</span>
-<a name="l00063"></a>00063 <span class="comment"></span>
-<a name="l00064"></a>00064 <span class="comment"></span>
-<a name="l00065"></a>00065 <span class="comment">  Created 2001-05-20 by Charles Reitzel</span>
-<a name="l00066"></a>00066 <span class="comment">  Updated 2002-07-01 by Charles Reitzel - 1st Implementation</span>
-<a name="l00067"></a>00067 <span class="comment"></span>
-<a name="l00068"></a>00068 <span class="comment">*/</span>
-<a name="l00069"></a>00069 
-<a name="l00070"></a>00070 <span class="preprocessor">#include &quot;platform.h&quot;</span>
-<a name="l00071"></a>00071 <span class="preprocessor">#include &quot;tidyenum.h&quot;</span>
-<a name="l00072"></a>00072 
-<a name="l00073"></a>00073 <span class="preprocessor">#ifdef __cplusplus</span>
-<a name="l00074"></a>00074 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">&quot;C&quot;</span> {
-<a name="l00075"></a>00075 <span class="preprocessor">#endif</span>
-<a name="l00076"></a>00076 <span class="preprocessor"></span><span class="comment"></span>
-<a name="l00077"></a>00077 <span class="comment">/** @defgroup Opaque Opaque Types</span>
-<a name="l00078"></a>00078 <span class="comment">**</span>
-<a name="l00079"></a>00079 <span class="comment">** Cast to implementation types within lib.</span>
-<a name="l00080"></a>00080 <span class="comment">** Reduces inter-dependencies/conflicts w/ application code.</span>
-<a name="l00081"></a>00081 <span class="comment">** @{</span>
-<a name="l00082"></a>00082 <span class="comment">*/</span>
-<a name="l00083"></a>00083 <span class="comment"></span>
-<a name="l00084"></a>00084 <span class="comment">/** @struct TidyDoc</span>
-<a name="l00085"></a>00085 <span class="comment">**  Opaque document datatype</span>
-<a name="l00086"></a>00086 <span class="comment">*/</span>
-<a name="l00087"></a>00087 opaque_type( <a class="code" href="structTidyDoc.html">TidyDoc</a> );
-<a name="l00088"></a>00088 <span class="comment"></span>
-<a name="l00089"></a>00089 <span class="comment">/** @struct TidyOption</span>
-<a name="l00090"></a>00090 <span class="comment">**  Opaque option datatype</span>
-<a name="l00091"></a>00091 <span class="comment">*/</span>
-<a name="l00092"></a>00092 opaque_type( <a class="code" href="structTidyOption.html">TidyOption</a> );
-<a name="l00093"></a>00093 <span class="comment"></span>
-<a name="l00094"></a>00094 <span class="comment">/** @struct TidyNode</span>
-<a name="l00095"></a>00095 <span class="comment">**  Opaque node datatype</span>
-<a name="l00096"></a>00096 <span class="comment">*/</span>
-<a name="l00097"></a>00097 opaque_type( <a class="code" href="structTidyNode.html">TidyNode</a> );
-<a name="l00098"></a>00098 <span class="comment"></span>
-<a name="l00099"></a>00099 <span class="comment">/** @struct TidyAttr</span>
-<a name="l00100"></a>00100 <span class="comment">**  Opaque attribute datatype</span>
-<a name="l00101"></a>00101 <span class="comment">*/</span>
-<a name="l00102"></a>00102 opaque_type( <a class="code" href="structTidyAttr.html">TidyAttr</a> );
-<a name="l00103"></a>00103 <span class="comment"></span>
-<a name="l00104"></a>00104 <span class="comment">/** @} end Opaque group */</span>
-<a name="l00105"></a>00105 
-<a name="l00106"></a>00106 TIDY_STRUCT <span class="keyword">struct </span><a class="code" href="struct__TidyBuffer.html">_TidyBuffer</a>;
-<a name="l00107"></a>00107 <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__TidyBuffer.html">_TidyBuffer</a> <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>;
-<a name="l00108"></a>00108 
-<a name="l00109"></a>00109 <span class="comment"></span>
-<a name="l00110"></a>00110 <span class="comment">/** @defgroup Memory  Memory Allocation</span>
-<a name="l00111"></a>00111 <span class="comment">**</span>
-<a name="l00112"></a>00112 <span class="comment">** Tidy uses a user provided allocator for all</span>
-<a name="l00113"></a>00113 <span class="comment">** memory allocations.  If this allocator is</span>
-<a name="l00114"></a>00114 <span class="comment">** not provided, then a default allocator is</span>
-<a name="l00115"></a>00115 <span class="comment">** used which simply wraps standard C malloc/free</span>
-<a name="l00116"></a>00116 <span class="comment">** calls.  These wrappers call the panic function</span>
-<a name="l00117"></a>00117 <span class="comment">** upon any failure.  The default panic function</span>
-<a name="l00118"></a>00118 <span class="comment">** prints an out of memory message to stderr, and</span>
-<a name="l00119"></a>00119 <span class="comment">** calls exit(2).</span>
-<a name="l00120"></a>00120 <span class="comment">**</span>
-<a name="l00121"></a>00121 <span class="comment">** For applications in which it is unacceptable to</span>
-<a name="l00122"></a>00122 <span class="comment">** abort in the case of memory allocation, then the</span>
-<a name="l00123"></a>00123 <span class="comment">** panic function can be replaced with one which</span>
-<a name="l00124"></a>00124 <span class="comment">** longjmps() out of the tidy code.  For this to</span>
-<a name="l00125"></a>00125 <span class="comment">** clean up completely, you should be careful not</span>
-<a name="l00126"></a>00126 <span class="comment">** to use any tidy methods that open files as these</span>
-<a name="l00127"></a>00127 <span class="comment">** will not be closed before panic() is called.</span>
-<a name="l00128"></a>00128 <span class="comment">**</span>
-<a name="l00129"></a>00129 <span class="comment">** TODO: associate file handles with tidyDoc and</span>
-<a name="l00130"></a>00130 <span class="comment">** ensure that tidyDocRelease() can close them all.</span>
-<a name="l00131"></a>00131 <span class="comment">**</span>
-<a name="l00132"></a>00132 <span class="comment">** Calling the withAllocator() family (</span>
-<a name="l00133"></a>00133 <span class="comment">** tidyCreateWithAllocator, tidyBufInitWithAllocator,</span>
-<a name="l00134"></a>00134 <span class="comment">** tidyBufAllocWithAllocator) allow settings custom</span>
-<a name="l00135"></a>00135 <span class="comment">** allocators).</span>
-<a name="l00136"></a>00136 <span class="comment">**</span>
-<a name="l00137"></a>00137 <span class="comment">** All parts of the document use the same allocator.</span>
-<a name="l00138"></a>00138 <span class="comment">** Calls that require a user provided buffer can</span>
-<a name="l00139"></a>00139 <span class="comment">** optionally use a different allocator.</span>
-<a name="l00140"></a>00140 <span class="comment">**</span>
-<a name="l00141"></a>00141 <span class="comment">** For reference in designing a plug-in allocator,</span>
-<a name="l00142"></a>00142 <span class="comment">** most allocations made by tidy are less than 100</span>
-<a name="l00143"></a>00143 <span class="comment">** bytes, corresponding to attribute names/values, etc.</span>
-<a name="l00144"></a>00144 <span class="comment">**</span>
-<a name="l00145"></a>00145 <span class="comment">** There is also an additional class of much larger</span>
-<a name="l00146"></a>00146 <span class="comment">** allocations which are where most of the data from</span>
-<a name="l00147"></a>00147 <span class="comment">** the lexer is stored.  (It is not currently possible</span>
-<a name="l00148"></a>00148 <span class="comment">** to use a separate allocator for the lexer, this</span>
-<a name="l00149"></a>00149 <span class="comment">** would be a useful extension).</span>
-<a name="l00150"></a>00150 <span class="comment">**</span>
-<a name="l00151"></a>00151 <span class="comment">** In general, approximately 1/3rd of the memory</span>
-<a name="l00152"></a>00152 <span class="comment">** used by tidy is freed during the parse, so if</span>
-<a name="l00153"></a>00153 <span class="comment">** memory usage is an issue then an allocator that </span>
-<a name="l00154"></a>00154 <span class="comment">** can reuse this memory is a good idea.</span>
-<a name="l00155"></a>00155 <span class="comment">**</span>
-<a name="l00156"></a>00156 <span class="comment">** @{</span>
-<a name="l00157"></a>00157 <span class="comment">*/</span>
-<a name="l00158"></a>00158 <span class="comment"></span>
-<a name="l00159"></a>00159 <span class="comment">/** Prototype for the allocator&#39;s function table */</span>
-<a name="l00160"></a>00160 <span class="keyword">struct </span><a class="code" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a>;<span class="comment"></span>
-<a name="l00161"></a>00161 <span class="comment">/** The allocators function table */</span>
-<a name="l00162"></a><a class="code" href="group__Memory.html#ga3fe8c5ac7d658618c732565776940ed8">00162</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a> <a class="code" href="struct__TidyAllocatorVtbl.html">TidyAllocatorVtbl</a>;
-<a name="l00163"></a>00163 <span class="comment"></span>
-<a name="l00164"></a>00164 <span class="comment">/** Prototype for the allocator */</span>
-<a name="l00165"></a>00165 <span class="keyword">struct </span><a class="code" href="struct__TidyAllocator.html">_TidyAllocator</a>;<span class="comment"></span>
-<a name="l00166"></a>00166 <span class="comment">/** The allocator **/</span>
-<a name="l00167"></a><a class="code" href="group__Memory.html#ga78e96524a88db0c09e766795265863da">00167</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__TidyAllocator.html">_TidyAllocator</a> <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a>;
-<a name="l00168"></a>00168 <span class="comment"></span>
-<a name="l00169"></a>00169 <span class="comment">/** An allocator&#39;s function table.  All functions here must</span>
-<a name="l00170"></a>00170 <span class="comment">    be provided.</span>
-<a name="l00171"></a>00171 <span class="comment"> */</span>
-<a name="l00172"></a><a class="code" href="struct__TidyAllocatorVtbl.html">00172</a> <span class="keyword">struct </span><a class="code" href="struct__TidyAllocatorVtbl.html">_TidyAllocatorVtbl</a> {<span class="comment"></span>
-<a name="l00173"></a>00173 <span class="comment">    /** Called to allocate a block of nBytes of memory */</span>
-<a name="l00174"></a>00174     <span class="keywordtype">void</span>* (TIDY_CALL *<a class="code" href="struct__TidyAllocatorVtbl.html#ac89bb7f5b58fcb5b31a1560705f3b817">alloc</a>)( <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a> *<span class="keyword">self</span>, <span class="keywordtype">size_t</span> nBytes );<span class="comment"></span>
-<a name="l00175"></a>00175 <span class="comment">    /** Called to resize (grow, in general) a block of memory.</span>
-<a name="l00176"></a>00176 <span class="comment">        Must support being called with NULL.</span>
-<a name="l00177"></a>00177 <span class="comment">    */</span>
-<a name="l00178"></a>00178     <span class="keywordtype">void</span>* (TIDY_CALL *<a class="code" href="struct__TidyAllocatorVtbl.html#a0cad0dd2aa75a20573fc46f25460a5cc">realloc</a>)( <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a> *<span class="keyword">self</span>, <span class="keywordtype">void</span> *block, <span class="keywordtype">size_t</span> nBytes );<span class="comment"></span>
-<a name="l00179"></a>00179 <span class="comment">    /** Called to free a previously allocated block of memory */</span>
-<a name="l00180"></a>00180     <a class="code" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">void</a> (TIDY_CALL *free)( <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a> *<span class="keyword">self</span>, <span class="keywordtype">void</span> *block);<span class="comment"></span>
-<a name="l00181"></a>00181 <span class="comment">    /** Called when a panic condition is detected.  Must support</span>
-<a name="l00182"></a>00182 <span class="comment">        block == NULL.  This function is not called if either alloc </span>
-<a name="l00183"></a>00183 <span class="comment">        or realloc fails; it is up to the allocator to do this.</span>
-<a name="l00184"></a>00184 <span class="comment">        Currently this function can only be called if an error is</span>
-<a name="l00185"></a>00185 <span class="comment">        detected in the tree integrity via the internal function</span>
-<a name="l00186"></a>00186 <span class="comment">        CheckNodeIntegrity().  This is a situation that can</span>
-<a name="l00187"></a>00187 <span class="comment">        only arise in the case of a programming error in tidylib.</span>
-<a name="l00188"></a>00188 <span class="comment">        You can turn off node integrity checking by defining</span>
-<a name="l00189"></a>00189 <span class="comment">        the constant NO_NODE_INTEGRITY_CHECK during the build.</span>
-<a name="l00190"></a>00190 <span class="comment">    **/</span>
-<a name="l00191"></a>00191     <a class="code" href="struct__TidyAllocatorVtbl.html#a1e453d5e80b35fe3c6c15512c6b95aa5">void</a> (TIDY_CALL *panic)( <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a> *<span class="keyword">self</span>, ctmbstr msg );
-<a name="l00192"></a>00192 };
-<a name="l00193"></a>00193 <span class="comment"></span>
-<a name="l00194"></a>00194 <span class="comment">/** An allocator.  To create your own allocator, do something like</span>
-<a name="l00195"></a>00195 <span class="comment">    the following:</span>
-<a name="l00196"></a>00196 <span class="comment">    </span>
-<a name="l00197"></a>00197 <span class="comment">    typedef struct _MyAllocator {</span>
-<a name="l00198"></a>00198 <span class="comment">       TidyAllocator base;</span>
-<a name="l00199"></a>00199 <span class="comment">       ...other custom allocator state...</span>
-<a name="l00200"></a>00200 <span class="comment">    } MyAllocator;</span>
-<a name="l00201"></a>00201 <span class="comment">    </span>
-<a name="l00202"></a>00202 <span class="comment">    void* MyAllocator_alloc(TidyAllocator *base, void *block, size_t nBytes)</span>
-<a name="l00203"></a>00203 <span class="comment">    {</span>
-<a name="l00204"></a>00204 <span class="comment">        MyAllocator *self = (MyAllocator*)base;</span>
-<a name="l00205"></a>00205 <span class="comment">        ...</span>
-<a name="l00206"></a>00206 <span class="comment">    }</span>
-<a name="l00207"></a>00207 <span class="comment">    (etc)</span>
-<a name="l00208"></a>00208 <span class="comment"></span>
-<a name="l00209"></a>00209 <span class="comment">    static const TidyAllocatorVtbl MyAllocatorVtbl = {</span>
-<a name="l00210"></a>00210 <span class="comment">        MyAllocator_alloc,</span>
-<a name="l00211"></a>00211 <span class="comment">        MyAllocator_realloc,</span>
-<a name="l00212"></a>00212 <span class="comment">        MyAllocator_free,</span>
-<a name="l00213"></a>00213 <span class="comment">        MyAllocator_panic</span>
-<a name="l00214"></a>00214 <span class="comment">    };</span>
-<a name="l00215"></a>00215 <span class="comment"></span>
-<a name="l00216"></a>00216 <span class="comment">    myAllocator allocator;</span>
-<a name="l00217"></a>00217 <span class="comment">    TidyDoc doc;</span>
-<a name="l00218"></a>00218 <span class="comment"></span>
-<a name="l00219"></a>00219 <span class="comment">    allocator.base.vtbl = &amp;amp;MyAllocatorVtbl;</span>
-<a name="l00220"></a>00220 <span class="comment">    ...initialise allocator specific state...</span>
-<a name="l00221"></a>00221 <span class="comment">    doc = tidyCreateWithAllocator(&amp;allocator);</span>
-<a name="l00222"></a>00222 <span class="comment">    ...</span>
-<a name="l00223"></a>00223 <span class="comment"></span>
-<a name="l00224"></a>00224 <span class="comment">    Although this looks slightly long winded, the advantage is that to create</span>
-<a name="l00225"></a>00225 <span class="comment">    a custom allocator you simply need to set the vtbl pointer correctly.</span>
-<a name="l00226"></a>00226 <span class="comment">    The vtbl itself can reside in static/global data, and hence does not</span>
-<a name="l00227"></a>00227 <span class="comment">    need to be initialised each time an allocator is created, and furthermore</span>
-<a name="l00228"></a>00228 <span class="comment">    the memory is shared amongst all created allocators.</span>
-<a name="l00229"></a>00229 <span class="comment">*/</span>
-<a name="l00230"></a><a class="code" href="struct__TidyAllocator.html">00230</a> <span class="keyword">struct </span><a class="code" href="struct__TidyAllocator.html">_TidyAllocator</a> {
-<a name="l00231"></a>00231     <span class="keyword">const</span> <a class="code" href="struct__TidyAllocatorVtbl.html">TidyAllocatorVtbl</a> *vtbl;
-<a name="l00232"></a>00232 };
-<a name="l00233"></a>00233 <span class="comment"></span>
-<a name="l00234"></a>00234 <span class="comment">/** Callback for &quot;malloc&quot; replacement */</span>
-<a name="l00235"></a><a class="code" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">00235</a> <span class="keyword">typedef</span> <span class="keywordtype">void</span>* (TIDY_CALL *<a class="code" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a>)( <span class="keywordtype">size_t</span> len );<span class="comment"></span>
-<a name="l00236"></a>00236 <span class="comment">/** Callback for &quot;realloc&quot; replacement */</span>
-<a name="l00237"></a><a class="code" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">00237</a> <span class="keyword">typedef</span> <span class="keywordtype">void</span>* (TIDY_CALL *<a class="code" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a>)( <span class="keywordtype">void</span>* buf, <span class="keywordtype">size_t</span> len );<span class="comment"></span>
-<a name="l00238"></a>00238 <span class="comment">/** Callback for &quot;free&quot; replacement */</span>
-<a name="l00239"></a><a class="code" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">00239</a> <span class="keyword">typedef</span> void  (TIDY_CALL *<a class="code" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a>)( <span class="keywordtype">void</span>* buf );<span class="comment"></span>
-<a name="l00240"></a>00240 <span class="comment">/** Callback for &quot;out of memory&quot; panic state */</span>
-<a name="l00241"></a><a class="code" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">00241</a> <span class="keyword">typedef</span> void  (TIDY_CALL *<a class="code" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a>)( ctmbstr mssg );
-<a name="l00242"></a>00242 
-<a name="l00243"></a>00243 <span class="comment"></span>
-<a name="l00244"></a>00244 <span class="comment">/** Give Tidy a malloc() replacement */</span>
-<a name="l00245"></a>00245 TIDY_EXPORT Bool TIDY_CALL <a class="code" href="group__Memory.html#gab55079374527525e3374ebc4d2a1e625">tidySetMallocCall</a>( <a class="code" href="group__Memory.html#ga3bd3cc4d0c837a4cd10ab472ba671430">TidyMalloc</a> fmalloc );<span class="comment"></span>
-<a name="l00246"></a>00246 <span class="comment">/** Give Tidy a realloc() replacement */</span>
-<a name="l00247"></a>00247 TIDY_EXPORT Bool TIDY_CALL <a class="code" href="group__Memory.html#ga446b538da3ee3f2e5a3827b877665b30">tidySetReallocCall</a>( <a class="code" href="group__Memory.html#ga9d9a5625817932dbbb39dd33de678edd">TidyRealloc</a> frealloc );<span class="comment"></span>
-<a name="l00248"></a>00248 <span class="comment">/** Give Tidy a free() replacement */</span>
-<a name="l00249"></a>00249 TIDY_EXPORT Bool TIDY_CALL <a class="code" href="group__Memory.html#ga70e707b7df86effb5727b0b9ff64eed7">tidySetFreeCall</a>( <a class="code" href="group__Memory.html#ga27931c443e424937ba47f0d4795aa35f">TidyFree</a> ffree );<span class="comment"></span>
-<a name="l00250"></a>00250 <span class="comment">/** Give Tidy an &quot;out of memory&quot; handler */</span>
-<a name="l00251"></a>00251 TIDY_EXPORT Bool TIDY_CALL <a class="code" href="group__Memory.html#gab12cc0435bacec1a8c725e02357acc00">tidySetPanicCall</a>( <a class="code" href="group__Memory.html#ga0770be41d9935a3e2933ba0be3c7725c">TidyPanic</a> fpanic );
-<a name="l00252"></a>00252 <span class="comment"></span>
-<a name="l00253"></a>00253 <span class="comment">/** @} end Memory group */</span>
-<a name="l00254"></a>00254 <span class="comment"></span>
-<a name="l00255"></a>00255 <span class="comment">/** @defgroup Basic Basic Operations</span>
-<a name="l00256"></a>00256 <span class="comment">**</span>
-<a name="l00257"></a>00257 <span class="comment">** Tidy public interface</span>
-<a name="l00258"></a>00258 <span class="comment">**</span>
-<a name="l00259"></a>00259 <span class="comment">** Several functions return an integer document status:</span>
-<a name="l00260"></a>00260 <span class="comment">**</span>
-<a name="l00261"></a>00261 <span class="comment">** &lt;pre&gt;</span>
-<a name="l00262"></a>00262 <span class="comment">** 0    -&gt; SUCCESS</span>
-<a name="l00263"></a>00263 <span class="comment">** &gt;0   -&gt; 1 == TIDY WARNING, 2 == TIDY ERROR</span>
-<a name="l00264"></a>00264 <span class="comment">** &lt;0   -&gt; SEVERE ERROR</span>
-<a name="l00265"></a>00265 <span class="comment">** &lt;/pre&gt;</span>
-<a name="l00266"></a>00266 <span class="comment">** </span>
-<a name="l00267"></a>00267 <span class="comment">The following is a short example program.</span>
-<a name="l00268"></a>00268 <span class="comment"></span>
-<a name="l00269"></a>00269 <span class="comment">&lt;pre&gt;</span>
-<a name="l00270"></a>00270 <span class="comment">#include &amp;lt;tidy.h&amp;gt;</span>
-<a name="l00271"></a>00271 <span class="comment">#include &amp;lt;buffio.h&amp;gt;</span>
-<a name="l00272"></a>00272 <span class="comment">#include &amp;lt;stdio.h&amp;gt;</span>
-<a name="l00273"></a>00273 <span class="comment">#include &amp;lt;errno.h&amp;gt;</span>
-<a name="l00274"></a>00274 <span class="comment"></span>
-<a name="l00275"></a>00275 <span class="comment"></span>
-<a name="l00276"></a>00276 <span class="comment">int main(int argc, char **argv )</span>
-<a name="l00277"></a>00277 <span class="comment">{</span>
-<a name="l00278"></a>00278 <span class="comment">  const char* input = &quot;&amp;lt;title&amp;gt;Foo&amp;lt;/title&amp;gt;&amp;lt;p&amp;gt;Foo!&quot;;</span>
-<a name="l00279"></a>00279 <span class="comment">  TidyBuffer output;</span>
-<a name="l00280"></a>00280 <span class="comment">  TidyBuffer errbuf;</span>
-<a name="l00281"></a>00281 <span class="comment">  int rc = -1;</span>
-<a name="l00282"></a>00282 <span class="comment">  Bool ok;</span>
-<a name="l00283"></a>00283 <span class="comment"></span>
-<a name="l00284"></a>00284 <span class="comment">  TidyDoc tdoc = tidyCreate();                     // Initialize &quot;document&quot;</span>
-<a name="l00285"></a>00285 <span class="comment">  tidyBufInit( &amp;amp;output );</span>
-<a name="l00286"></a>00286 <span class="comment">  tidyBufInit( &amp;amp;errbuf );</span>
-<a name="l00287"></a>00287 <span class="comment">  printf( &quot;Tidying:\t\%s\\n&quot;, input );</span>
-<a name="l00288"></a>00288 <span class="comment"></span>
-<a name="l00289"></a>00289 <span class="comment">  ok = tidyOptSetBool( tdoc, TidyXhtmlOut, yes );  // Convert to XHTML</span>
-<a name="l00290"></a>00290 <span class="comment">  if ( ok )</span>
-<a name="l00291"></a>00291 <span class="comment">    rc = tidySetErrorBuffer( tdoc, &amp;amp;errbuf );      // Capture diagnostics</span>
-<a name="l00292"></a>00292 <span class="comment">  if ( rc &amp;gt;= 0 )</span>
-<a name="l00293"></a>00293 <span class="comment">    rc = tidyParseString( tdoc, input );           // Parse the input</span>
-<a name="l00294"></a>00294 <span class="comment">  if ( rc &amp;gt;= 0 )</span>
-<a name="l00295"></a>00295 <span class="comment">    rc = tidyCleanAndRepair( tdoc );               // Tidy it up!</span>
-<a name="l00296"></a>00296 <span class="comment">  if ( rc &amp;gt;= 0 )</span>
-<a name="l00297"></a>00297 <span class="comment">    rc = tidyRunDiagnostics( tdoc );               // Kvetch</span>
-<a name="l00298"></a>00298 <span class="comment">  if ( rc &amp;gt; 1 )                                    // If error, force output.</span>
-<a name="l00299"></a>00299 <span class="comment">    rc = ( tidyOptSetBool(tdoc, TidyForceOutput, yes) ? rc : -1 );</span>
-<a name="l00300"></a>00300 <span class="comment">  if ( rc &amp;gt;= 0 )</span>
-<a name="l00301"></a>00301 <span class="comment">    rc = tidySaveBuffer( tdoc, &amp;amp;output );          // Pretty Print</span>
-<a name="l00302"></a>00302 <span class="comment"></span>
-<a name="l00303"></a>00303 <span class="comment">  if ( rc &amp;gt;= 0 )</span>
-<a name="l00304"></a>00304 <span class="comment">  {</span>
-<a name="l00305"></a>00305 <span class="comment">    if ( rc &amp;gt; 0 )</span>
-<a name="l00306"></a>00306 <span class="comment">      printf( &quot;\\nDiagnostics:\\n\\n\%s&quot;, errbuf.bp );</span>
-<a name="l00307"></a>00307 <span class="comment">    printf( &quot;\\nAnd here is the result:\\n\\n\%s&quot;, output.bp );</span>
-<a name="l00308"></a>00308 <span class="comment">  }</span>
-<a name="l00309"></a>00309 <span class="comment">  else</span>
-<a name="l00310"></a>00310 <span class="comment">    printf( &quot;A severe error (\%d) occurred.\\n&quot;, rc );</span>
-<a name="l00311"></a>00311 <span class="comment"></span>
-<a name="l00312"></a>00312 <span class="comment">  tidyBufFree( &amp;amp;output );</span>
-<a name="l00313"></a>00313 <span class="comment">  tidyBufFree( &amp;amp;errbuf );</span>
-<a name="l00314"></a>00314 <span class="comment">  tidyRelease( tdoc );</span>
-<a name="l00315"></a>00315 <span class="comment">  return rc;</span>
-<a name="l00316"></a>00316 <span class="comment">}</span>
-<a name="l00317"></a>00317 <span class="comment">&lt;/pre&gt;</span>
-<a name="l00318"></a>00318 <span class="comment">** @{</span>
-<a name="l00319"></a>00319 <span class="comment">*/</span>
-<a name="l00320"></a>00320 
-<a name="l00321"></a>00321 TIDY_EXPORT <a class="code" href="structTidyDoc.html">TidyDoc</a> TIDY_CALL     tidyCreate(<span class="keywordtype">void</span>);
-<a name="l00322"></a>00322 TIDY_EXPORT <a class="code" href="structTidyDoc.html">TidyDoc</a> TIDY_CALL     tidyCreateWithAllocator( <a class="code" href="struct__TidyAllocator.html">TidyAllocator</a> *allocator );
-<a name="l00323"></a>00323 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL        tidyRelease( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00324"></a>00324 <span class="comment"></span>
-<a name="l00325"></a>00325 <span class="comment">/** Let application store a chunk of data w/ each Tidy instance.</span>
-<a name="l00326"></a>00326 <span class="comment">**  Useful for callbacks.</span>
-<a name="l00327"></a>00327 <span class="comment">*/</span>
-<a name="l00328"></a>00328 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL        <a class="code" href="group__Basic.html#gaa1a9f78be3542868ac10481e2efa8708">tidySetAppData</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <span class="keywordtype">void</span>* appData );
-<a name="l00329"></a>00329 <span class="comment"></span>
-<a name="l00330"></a>00330 <span class="comment">/** Get application data set previously */</span>
-<a name="l00331"></a>00331 TIDY_EXPORT <span class="keywordtype">void</span>* TIDY_CALL       <a class="code" href="group__Basic.html#ga1319c9757d4f8c596615e0fdcfcf2504">tidyGetAppData</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00332"></a>00332 <span class="comment"></span>
-<a name="l00333"></a>00333 <span class="comment">/** Get release date (version) for current library */</span>
-<a name="l00334"></a>00334 TIDY_EXPORT ctmbstr TIDY_CALL     <a class="code" href="group__Basic.html#gab7b404ada690635341d2e2d332102b36">tidyReleaseDate</a>(<span class="keywordtype">void</span>);
-<a name="l00335"></a>00335 
-<a name="l00336"></a>00336 <span class="comment">/* Diagnostics and Repair</span>
-<a name="l00337"></a>00337 <span class="comment">*/</span>
-<a name="l00338"></a>00338 <span class="comment"></span>
-<a name="l00339"></a>00339 <span class="comment">/** Get status of current document. */</span>
-<a name="l00340"></a>00340 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Basic.html#gaf45a8fb57fb9bfce89c42e1cc9d3e760">tidyStatus</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00341"></a>00341 <span class="comment"></span>
-<a name="l00342"></a>00342 <span class="comment">/** Detected HTML version: 0, 2, 3 or 4 */</span>
-<a name="l00343"></a>00343 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Basic.html#ga8fbec4bc2b67c4f525440cfc7196b443">tidyDetectedHtmlVersion</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00344"></a>00344 <span class="comment"></span>
-<a name="l00345"></a>00345 <span class="comment">/** Input is XHTML? */</span>
-<a name="l00346"></a>00346 TIDY_EXPORT Bool TIDY_CALL        <a class="code" href="group__Basic.html#gaf3279c9a0506629d2ae766c31c1de48d">tidyDetectedXhtml</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00347"></a>00347 <span class="comment"></span>
-<a name="l00348"></a>00348 <span class="comment">/** Input is generic XML (not HTML or XHTML)? */</span>
-<a name="l00349"></a>00349 TIDY_EXPORT Bool TIDY_CALL        <a class="code" href="group__Basic.html#ga8dd761b5e230119f8eb6c412f12fdec2">tidyDetectedGenericXml</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00350"></a>00350 <span class="comment"></span>
-<a name="l00351"></a>00351 <span class="comment">/** Number of Tidy errors encountered.  If &gt; 0, output is suppressed</span>
-<a name="l00352"></a>00352 <span class="comment">**  unless TidyForceOutput is set.</span>
-<a name="l00353"></a>00353 <span class="comment">*/</span>
-<a name="l00354"></a>00354 TIDY_EXPORT uint TIDY_CALL        <a class="code" href="group__Basic.html#ga3617548e3669d00ad074daaaa8f3460d">tidyErrorCount</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00355"></a>00355 <span class="comment"></span>
-<a name="l00356"></a>00356 <span class="comment">/** Number of Tidy warnings encountered. */</span>
-<a name="l00357"></a>00357 TIDY_EXPORT uint TIDY_CALL        <a class="code" href="group__Basic.html#ga29b0c36f75584a2a26422b021561f19c">tidyWarningCount</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00358"></a>00358 <span class="comment"></span>
-<a name="l00359"></a>00359 <span class="comment">/** Number of Tidy accessibility warnings encountered. */</span>
-<a name="l00360"></a>00360 TIDY_EXPORT uint TIDY_CALL        <a class="code" href="group__Basic.html#ga56ad617084cdcbb485f06f597de7dedb">tidyAccessWarningCount</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00361"></a>00361 <span class="comment"></span>
-<a name="l00362"></a>00362 <span class="comment">/** Number of Tidy configuration errors encountered. */</span>
-<a name="l00363"></a>00363 TIDY_EXPORT uint TIDY_CALL        <a class="code" href="group__Basic.html#gac17c01a0dbb8f73bdee29df48e499988">tidyConfigErrorCount</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00364"></a>00364 
-<a name="l00365"></a>00365 <span class="comment">/* Get/Set configuration options</span>
-<a name="l00366"></a>00366 <span class="comment">*/</span><span class="comment"></span>
-<a name="l00367"></a>00367 <span class="comment">/** Load an ASCII Tidy configuration file */</span>
-<a name="l00368"></a>00368 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Basic.html#ga2dec710c0d4927e76a7b0d338b11693a">tidyLoadConfig</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr configFile );
-<a name="l00369"></a>00369 <span class="comment"></span>
-<a name="l00370"></a>00370 <span class="comment">/** Load a Tidy configuration file with the specified character encoding */</span>
-<a name="l00371"></a>00371 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Basic.html#gac677de148c6f00fc96a682c21433ab1c">tidyLoadConfigEnc</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr configFile,
-<a name="l00372"></a>00372                                                      ctmbstr charenc );
-<a name="l00373"></a>00373 
-<a name="l00374"></a>00374 TIDY_EXPORT Bool TIDY_CALL        tidyFileExists( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr filename );
-<a name="l00375"></a>00375 
-<a name="l00376"></a>00376 <span class="comment"></span>
-<a name="l00377"></a>00377 <span class="comment">/** Set the input/output character encoding for parsing markup.</span>
-<a name="l00378"></a>00378 <span class="comment">**  Values include: ascii, latin1, raw, utf8, iso2022, mac,</span>
-<a name="l00379"></a>00379 <span class="comment">**  win1252, utf16le, utf16be, utf16, big5 and shiftjis.  Case in-sensitive.</span>
-<a name="l00380"></a>00380 <span class="comment">*/</span>
-<a name="l00381"></a>00381 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Basic.html#ga2612e184472c2a59ca822a37d030e9af">tidySetCharEncoding</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam );
-<a name="l00382"></a>00382 <span class="comment"></span>
-<a name="l00383"></a>00383 <span class="comment">/** Set the input encoding for parsing markup.</span>
-<a name="l00384"></a>00384 <span class="comment">** As for tidySetCharEncoding but only affects the input encoding</span>
-<a name="l00385"></a>00385 <span class="comment">**/</span>
-<a name="l00386"></a>00386 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Basic.html#ga05203a9193542a67b8396cf6ca8acf59">tidySetInCharEncoding</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam );
-<a name="l00387"></a>00387 <span class="comment"></span>
-<a name="l00388"></a>00388 <span class="comment">/** Set the output encoding.</span>
-<a name="l00389"></a>00389 <span class="comment">**/</span>
-<a name="l00390"></a>00390 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Basic.html#ga9b6bd07e38bf320cf88663a29967f1e9">tidySetOutCharEncoding</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr encnam );
-<a name="l00391"></a>00391 <span class="comment"></span>
-<a name="l00392"></a>00392 <span class="comment">/** @} end Basic group */</span>
-<a name="l00393"></a>00393 
-<a name="l00394"></a>00394 <span class="comment"></span>
-<a name="l00395"></a>00395 <span class="comment">/** @defgroup Configuration Configuration Options</span>
-<a name="l00396"></a>00396 <span class="comment">**</span>
-<a name="l00397"></a>00397 <span class="comment">** Functions for getting and setting Tidy configuration options.</span>
-<a name="l00398"></a>00398 <span class="comment">** @{</span>
-<a name="l00399"></a>00399 <span class="comment">*/</span>
-<a name="l00400"></a>00400 <span class="comment"></span>
-<a name="l00401"></a>00401 <span class="comment">/** Applications using TidyLib may want to augment command-line and</span>
-<a name="l00402"></a>00402 <span class="comment">**  configuration file options.  Setting this callback allows an application </span>
-<a name="l00403"></a>00403 <span class="comment">**  developer to examine command-line and configuration file options after</span>
-<a name="l00404"></a>00404 <span class="comment">**  TidyLib has examined them and failed to recognize them.</span>
-<a name="l00405"></a>00405 <span class="comment">**/</span>
-<a name="l00406"></a>00406 
-<a name="l00407"></a><a class="code" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">00407</a> <span class="keyword">typedef</span> Bool (TIDY_CALL *<a class="code" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">TidyOptCallback</a>)( ctmbstr option, ctmbstr value );
-<a name="l00408"></a>00408 
-<a name="l00409"></a>00409 TIDY_EXPORT Bool TIDY_CALL          tidySetOptionCallback( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="group__Configuration.html#gaee8a8bcb6091bd36f6fc20507a4544fc">TidyOptCallback</a> pOptCallback );
-<a name="l00410"></a>00410 <span class="comment"></span>
-<a name="l00411"></a>00411 <span class="comment">/** Get option ID by name */</span>
-<a name="l00412"></a>00412 TIDY_EXPORT TidyOptionId TIDY_CALL  <a class="code" href="group__Configuration.html#ga500f31ba81d015b8ce9dad6f2a6ade75">tidyOptGetIdForName</a>( ctmbstr optnam );
-<a name="l00413"></a>00413 <span class="comment"></span>
-<a name="l00414"></a>00414 <span class="comment">/** Get iterator for list of option */</span><span class="comment"></span>
-<a name="l00415"></a>00415 <span class="comment">/** </span>
-<a name="l00416"></a>00416 <span class="comment">Example:</span>
-<a name="l00417"></a>00417 <span class="comment">&lt;pre&gt;</span>
-<a name="l00418"></a>00418 <span class="comment">TidyIterator itOpt = tidyGetOptionList( tdoc );</span>
-<a name="l00419"></a>00419 <span class="comment">while ( itOpt )</span>
-<a name="l00420"></a>00420 <span class="comment">{</span>
-<a name="l00421"></a>00421 <span class="comment">  TidyOption opt = tidyGetNextOption( tdoc, &amp;itOpt );</span>
-<a name="l00422"></a>00422 <span class="comment">  .. get/set option values ..</span>
-<a name="l00423"></a>00423 <span class="comment">}</span>
-<a name="l00424"></a>00424 <span class="comment">&lt;/pre&gt;</span>
-<a name="l00425"></a>00425 <span class="comment">*/</span>
-<a name="l00426"></a>00426 
-<a name="l00427"></a>00427 TIDY_EXPORT TidyIterator TIDY_CALL  <a class="code" href="group__Configuration.html#gab92a35ffbd3b0b668534d63f94d2486f">tidyGetOptionList</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );<span class="comment"></span>
-<a name="l00428"></a>00428 <span class="comment">/** Get next Option */</span>
-<a name="l00429"></a>00429 TIDY_EXPORT <a class="code" href="structTidyOption.html">TidyOption</a> TIDY_CALL    <a class="code" href="group__Configuration.html#ga1a3088dacc539487e00f1eb4009dafc0">tidyGetNextOption</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyIterator* pos );
-<a name="l00430"></a>00430 <span class="comment"></span>
-<a name="l00431"></a>00431 <span class="comment">/** Lookup option by ID */</span>
-<a name="l00432"></a>00432 TIDY_EXPORT <a class="code" href="structTidyOption.html">TidyOption</a> TIDY_CALL    <a class="code" href="group__Configuration.html#ga030c695d6407b2756856eb1862642cfe">tidyGetOption</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId );<span class="comment"></span>
-<a name="l00433"></a>00433 <span class="comment">/** Lookup option by name */</span>
-<a name="l00434"></a>00434 TIDY_EXPORT <a class="code" href="structTidyOption.html">TidyOption</a> TIDY_CALL    <a class="code" href="group__Configuration.html#gaeae2e147645697fc54234ff2526a8108">tidyGetOptionByName</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr optnam );
-<a name="l00435"></a>00435 <span class="comment"></span>
-<a name="l00436"></a>00436 <span class="comment">/** Get ID of given Option */</span>
-<a name="l00437"></a>00437 TIDY_EXPORT TidyOptionId TIDY_CALL  <a class="code" href="group__Configuration.html#ga51cf095b76921b4e290e14814998f096">tidyOptGetId</a>( <a class="code" href="structTidyOption.html">TidyOption</a> opt );
-<a name="l00438"></a>00438 <span class="comment"></span>
-<a name="l00439"></a>00439 <span class="comment">/** Get name of given Option */</span>
-<a name="l00440"></a>00440 TIDY_EXPORT ctmbstr TIDY_CALL       <a class="code" href="group__Configuration.html#gaf370cd2ea113747f50da185fda24adcb">tidyOptGetName</a>( <a class="code" href="structTidyOption.html">TidyOption</a> opt );
-<a name="l00441"></a>00441 <span class="comment"></span>
-<a name="l00442"></a>00442 <span class="comment">/** Get datatype of given Option */</span>
-<a name="l00443"></a>00443 TIDY_EXPORT TidyOptionType TIDY_CALL <a class="code" href="group__Configuration.html#ga06e2685cc2950b182ff2f7136d170a34">tidyOptGetType</a>( <a class="code" href="structTidyOption.html">TidyOption</a> opt );
-<a name="l00444"></a>00444 <span class="comment"></span>
-<a name="l00445"></a>00445 <span class="comment">/** Is Option read-only? */</span>
-<a name="l00446"></a>00446 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#ga6aba2ccdb1237a70f5fe1393fee0ce4d">tidyOptIsReadOnly</a>( <a class="code" href="structTidyOption.html">TidyOption</a> opt );
-<a name="l00447"></a>00447 <span class="comment"></span>
-<a name="l00448"></a>00448 <span class="comment">/** Get category of given Option */</span>
-<a name="l00449"></a>00449 TIDY_EXPORT TidyConfigCategory TIDY_CALL <a class="code" href="group__Configuration.html#ga1d8b72e64e4d949dc21599fa788e842f">tidyOptGetCategory</a>( <a class="code" href="structTidyOption.html">TidyOption</a> opt );
-<a name="l00450"></a>00450 <span class="comment"></span>
-<a name="l00451"></a>00451 <span class="comment">/** Get default value of given Option as a string */</span>
-<a name="l00452"></a>00452 TIDY_EXPORT ctmbstr TIDY_CALL       <a class="code" href="group__Configuration.html#gab9e02c9927fe2c382ec5f81b4acf9cb4">tidyOptGetDefault</a>( <a class="code" href="structTidyOption.html">TidyOption</a> opt );
-<a name="l00453"></a>00453 <span class="comment"></span>
-<a name="l00454"></a>00454 <span class="comment">/** Get default value of given Option as an unsigned integer */</span>
-<a name="l00455"></a>00455 TIDY_EXPORT ulong TIDY_CALL         <a class="code" href="group__Configuration.html#gafc8df35e864dd3a24f23aca3c2f8bd9d">tidyOptGetDefaultInt</a>( <a class="code" href="structTidyOption.html">TidyOption</a> opt );
-<a name="l00456"></a>00456 <span class="comment"></span>
-<a name="l00457"></a>00457 <span class="comment">/** Get default value of given Option as a Boolean value */</span>
-<a name="l00458"></a>00458 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#gadadea4da66e3718e02b720c2b59d170b">tidyOptGetDefaultBool</a>( <a class="code" href="structTidyOption.html">TidyOption</a> opt );
-<a name="l00459"></a>00459 <span class="comment"></span>
-<a name="l00460"></a>00460 <span class="comment">/** Iterate over Option &quot;pick list&quot; */</span>
-<a name="l00461"></a>00461 TIDY_EXPORT TidyIterator TIDY_CALL  <a class="code" href="group__Configuration.html#ga31f815fe2b5bf1e00d6b50be62edd0ab">tidyOptGetPickList</a>( <a class="code" href="structTidyOption.html">TidyOption</a> opt );<span class="comment"></span>
-<a name="l00462"></a>00462 <span class="comment">/** Get next string value of Option &quot;pick list&quot; */</span>
-<a name="l00463"></a>00463 TIDY_EXPORT ctmbstr TIDY_CALL       <a class="code" href="group__Configuration.html#gad1366c5c458f38d2a9c6a6335e6704d9">tidyOptGetNextPick</a>( <a class="code" href="structTidyOption.html">TidyOption</a> opt, TidyIterator* pos );
-<a name="l00464"></a>00464 <span class="comment"></span>
-<a name="l00465"></a>00465 <span class="comment">/** Get current Option value as a string */</span>
-<a name="l00466"></a>00466 TIDY_EXPORT ctmbstr TIDY_CALL       <a class="code" href="group__Configuration.html#ga0fbe23ab1e4ec374fa38e6f514617e4d">tidyOptGetValue</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId );<span class="comment"></span>
-<a name="l00467"></a>00467 <span class="comment">/** Set Option value as a string */</span>
-<a name="l00468"></a>00468 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#gaf37bdad3b6809d8cb78e7d6316d4ba69">tidyOptSetValue</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId, ctmbstr val );<span class="comment"></span>
-<a name="l00469"></a>00469 <span class="comment">/** Set named Option value as a string.  Good if not sure of type. */</span>
-<a name="l00470"></a>00470 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#gad09fbcbbaf83fbf93e0d7be9c9bb30c0">tidyOptParseValue</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr optnam, ctmbstr val );
-<a name="l00471"></a>00471 <span class="comment"></span>
-<a name="l00472"></a>00472 <span class="comment">/** Get current Option value as an integer */</span>
-<a name="l00473"></a>00473 TIDY_EXPORT ulong TIDY_CALL         <a class="code" href="group__Configuration.html#ga7ff683612d446b07318517e564cccc7a">tidyOptGetInt</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId );<span class="comment"></span>
-<a name="l00474"></a>00474 <span class="comment">/** Set Option value as an integer */</span>
-<a name="l00475"></a>00475 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#gad9e75a64c8dcbc54e791959cf934e1ad">tidyOptSetInt</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId, ulong val );
-<a name="l00476"></a>00476 <span class="comment"></span>
-<a name="l00477"></a>00477 <span class="comment">/** Get current Option value as a Boolean flag */</span>
-<a name="l00478"></a>00478 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#ga09e6c999e9e7ebc94ea3d9cf5d674125">tidyOptGetBool</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId );<span class="comment"></span>
-<a name="l00479"></a>00479 <span class="comment">/** Set Option value as a Boolean flag */</span>
-<a name="l00480"></a>00480 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#gac9de7e155bea5c28713f2bfb93614472">tidyOptSetBool</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId, Bool val );
-<a name="l00481"></a>00481 <span class="comment"></span>
-<a name="l00482"></a>00482 <span class="comment">/** Reset option to default value by ID */</span>
-<a name="l00483"></a>00483 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#ga2aa45ad67758ca0b18d14eafa37fe080">tidyOptResetToDefault</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId opt );<span class="comment"></span>
-<a name="l00484"></a>00484 <span class="comment">/** Reset all options to their default values */</span>
-<a name="l00485"></a>00485 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#ga874ce26884f0eeaf692c30758688888a">tidyOptResetAllToDefault</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00486"></a>00486 <span class="comment"></span>
-<a name="l00487"></a>00487 <span class="comment">/** Take a snapshot of current config settings */</span>
-<a name="l00488"></a>00488 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#ga4beb2c73c90c3e2ae589c2642478cebd">tidyOptSnapshot</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );<span class="comment"></span>
-<a name="l00489"></a>00489 <span class="comment">/** Reset config settings to snapshot (after document processing) */</span>
-<a name="l00490"></a>00490 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#gae6212b8f32990763cc18a6d3f05eb191">tidyOptResetToSnapshot</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00491"></a>00491 <span class="comment"></span>
-<a name="l00492"></a>00492 <span class="comment">/** Any settings different than default? */</span>
-<a name="l00493"></a>00493 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#ga083cb42d6f4413604240b5c1b3aa2070">tidyOptDiffThanDefault</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );<span class="comment"></span>
-<a name="l00494"></a>00494 <span class="comment">/** Any settings different than snapshot? */</span>
-<a name="l00495"></a>00495 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#ga793bc9e177aa90301802e44c4fc22e0e">tidyOptDiffThanSnapshot</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00496"></a>00496 <span class="comment"></span>
-<a name="l00497"></a>00497 <span class="comment">/** Copy current configuration settings from one document to another */</span>
-<a name="l00498"></a>00498 TIDY_EXPORT Bool TIDY_CALL          <a class="code" href="group__Configuration.html#ga0b6cb26ab5dbbe0a0841d605fbd06fad">tidyOptCopyConfig</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdocTo, <a class="code" href="structTidyDoc.html">TidyDoc</a> tdocFrom );
-<a name="l00499"></a>00499 <span class="comment"></span>
-<a name="l00500"></a>00500 <span class="comment">/** Get character encoding name.  Used with TidyCharEncoding,</span>
-<a name="l00501"></a>00501 <span class="comment">**  TidyOutCharEncoding, TidyInCharEncoding */</span>
-<a name="l00502"></a>00502 TIDY_EXPORT ctmbstr TIDY_CALL       <a class="code" href="group__Configuration.html#ga47f8502cc202fc7423937647957955a3">tidyOptGetEncName</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId );
-<a name="l00503"></a>00503 <span class="comment"></span>
-<a name="l00504"></a>00504 <span class="comment">/** Get current pick list value for option by ID.  Useful for enum types. */</span>
-<a name="l00505"></a>00505 TIDY_EXPORT ctmbstr TIDY_CALL       <a class="code" href="group__Configuration.html#ga0785047cc73d5fbc88691861a0fa9c78">tidyOptGetCurrPick</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyOptionId optId);
-<a name="l00506"></a>00506 <span class="comment"></span>
-<a name="l00507"></a>00507 <span class="comment">/** Iterate over user declared tags */</span>
-<a name="l00508"></a>00508 TIDY_EXPORT TidyIterator TIDY_CALL  <a class="code" href="group__Configuration.html#ga55f30cf9e507f8fc66330ec3b0132620">tidyOptGetDeclTagList</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );<span class="comment"></span>
-<a name="l00509"></a>00509 <span class="comment">/** Get next declared tag of specified type: TidyInlineTags, TidyBlockTags,</span>
-<a name="l00510"></a>00510 <span class="comment">**  TidyEmptyTags, TidyPreTags */</span>
-<a name="l00511"></a>00511 TIDY_EXPORT ctmbstr TIDY_CALL       <a class="code" href="group__Configuration.html#gacec933eef8f9eec3dfa4382e05cab251">tidyOptGetNextDeclTag</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, 
-<a name="l00512"></a>00512                                                           TidyOptionId optId,
-<a name="l00513"></a>00513                                                           TidyIterator* iter );<span class="comment"></span>
-<a name="l00514"></a>00514 <span class="comment">/** Get option description */</span>
-<a name="l00515"></a>00515 TIDY_EXPORT ctmbstr TIDY_CALL       <a class="code" href="group__Configuration.html#gafca3ed506463e192187133ff646a643d">tidyOptGetDoc</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="structTidyOption.html">TidyOption</a> opt );
-<a name="l00516"></a>00516 <span class="comment"></span>
-<a name="l00517"></a>00517 <span class="comment">/** Iterate over a list of related options */</span>
-<a name="l00518"></a>00518 TIDY_EXPORT TidyIterator TIDY_CALL  <a class="code" href="group__Configuration.html#gaeed1ef5cb5329f3f5aca0a8ad7e8ea4f">tidyOptGetDocLinksList</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc,
-<a name="l00519"></a>00519                                                   <a class="code" href="structTidyOption.html">TidyOption</a> opt );<span class="comment"></span>
-<a name="l00520"></a>00520 <span class="comment">/** Get next related option */</span>
-<a name="l00521"></a>00521 TIDY_EXPORT <a class="code" href="structTidyOption.html">TidyOption</a> TIDY_CALL    <a class="code" href="group__Configuration.html#ga1db79a95067d6364c02263d9492fa9e8">tidyOptGetNextDocLinks</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc,
-<a name="l00522"></a>00522                                                   TidyIterator* pos );
-<a name="l00523"></a>00523 <span class="comment"></span>
-<a name="l00524"></a>00524 <span class="comment">/** @} end Configuration group */</span>
-<a name="l00525"></a>00525 <span class="comment"></span>
-<a name="l00526"></a>00526 <span class="comment">/** @defgroup IO  I/O and Messages</span>
-<a name="l00527"></a>00527 <span class="comment">**</span>
-<a name="l00528"></a>00528 <span class="comment">** By default, Tidy will define, create and use </span>
-<a name="l00529"></a>00529 <span class="comment">** instances of input and output handlers for </span>
-<a name="l00530"></a>00530 <span class="comment">** standard C buffered I/O (i.e. FILE* stdin,</span>
-<a name="l00531"></a>00531 <span class="comment">** FILE* stdout and FILE* stderr for content</span>
-<a name="l00532"></a>00532 <span class="comment">** input, content output and diagnostic output,</span>
-<a name="l00533"></a>00533 <span class="comment">** respectively.  A FILE* cfgFile input handler</span>
-<a name="l00534"></a>00534 <span class="comment">** will be used for config files.  Command line</span>
-<a name="l00535"></a>00535 <span class="comment">** options will just be set directly.</span>
-<a name="l00536"></a>00536 <span class="comment">**</span>
-<a name="l00537"></a>00537 <span class="comment">** @{</span>
-<a name="l00538"></a>00538 <span class="comment">*/</span>
-<a name="l00539"></a>00539 
-<a name="l00540"></a>00540 <span class="comment">/*****************</span>
-<a name="l00541"></a>00541 <span class="comment">   Input Source</span>
-<a name="l00542"></a>00542 <span class="comment">*****************/</span><span class="comment"></span>
-<a name="l00543"></a>00543 <span class="comment">/** Input Callback: get next byte of input */</span>
-<a name="l00544"></a><a class="code" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">00544</a> <span class="keyword">typedef</span> int  (TIDY_CALL *<a class="code" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a>)( <span class="keywordtype">void</span>* sourceData );
-<a name="l00545"></a>00545 <span class="comment"></span>
-<a name="l00546"></a>00546 <span class="comment">/** Input Callback: unget a byte of input */</span>
-<a name="l00547"></a><a class="code" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">00547</a> <span class="keyword">typedef</span> void (TIDY_CALL *<a class="code" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a>)( <span class="keywordtype">void</span>* sourceData, byte bt );
-<a name="l00548"></a>00548 <span class="comment"></span>
-<a name="l00549"></a>00549 <span class="comment">/** Input Callback: is end of input? */</span>
-<a name="l00550"></a><a class="code" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">00550</a> <span class="keyword">typedef</span> Bool (TIDY_CALL *<a class="code" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a>)( <span class="keywordtype">void</span>* sourceData );
-<a name="l00551"></a>00551 <span class="comment"></span>
-<a name="l00552"></a>00552 <span class="comment">/** End of input &quot;character&quot; */</span>
-<a name="l00553"></a><a class="code" href="group__IO.html#ga9a078b706ec6f37cce40958f6f68585a">00553</a> <span class="preprocessor">#define EndOfStream (~0u)</span>
-<a name="l00554"></a>00554 <span class="preprocessor"></span><span class="comment"></span>
-<a name="l00555"></a>00555 <span class="comment">/** TidyInputSource - Delivers raw bytes of input</span>
-<a name="l00556"></a>00556 <span class="comment">*/</span>
-<a name="l00557"></a>00557 TIDY_STRUCT
-<a name="l00558"></a><a class="code" href="struct__TidyInputSource.html">00558</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__TidyInputSource.html">_TidyInputSource</a>
-<a name="l00559"></a>00559 {
-<a name="l00560"></a>00560   <span class="comment">/* Instance data */</span>
-<a name="l00561"></a><a class="code" href="struct__TidyInputSource.html#a19bd9d8877bfc702ceae4e174d0b07d4">00561</a>   <span class="keywordtype">void</span>*               <a class="code" href="struct__TidyInputSource.html#a19bd9d8877bfc702ceae4e174d0b07d4">sourceData</a>;  <span class="comment">/**&lt; Input context.  Passed to callbacks */</span>
-<a name="l00562"></a>00562 
-<a name="l00563"></a>00563   <span class="comment">/* Methods */</span>
-<a name="l00564"></a><a class="code" href="struct__TidyInputSource.html#a4c318270e25e2e4dd9506cb04542b7d8">00564</a>   <a class="code" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a>     <a class="code" href="struct__TidyInputSource.html#a4c318270e25e2e4dd9506cb04542b7d8">getByte</a>;     <span class="comment">/**&lt; Pointer to &quot;get byte&quot; callback */</span>
-<a name="l00565"></a><a class="code" href="struct__TidyInputSource.html#a8bb61c749e1295207cd92752e63ae505">00565</a>   <a class="code" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a>   <a class="code" href="struct__TidyInputSource.html#a8bb61c749e1295207cd92752e63ae505">ungetByte</a>;   <span class="comment">/**&lt; Pointer to &quot;unget&quot; callback */</span>
-<a name="l00566"></a><a class="code" href="struct__TidyInputSource.html#af90ba85f6caffb1321a8fe3ef4b7bebb">00566</a>   <a class="code" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a>         <a class="code" href="struct__TidyInputSource.html#af90ba85f6caffb1321a8fe3ef4b7bebb">eof</a>;         <span class="comment">/**&lt; Pointer to &quot;eof&quot; callback */</span>
-<a name="l00567"></a>00567 } <a class="code" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a>;
-<a name="l00568"></a>00568 <span class="comment"></span>
-<a name="l00569"></a>00569 <span class="comment">/** Facilitates user defined source by providing</span>
-<a name="l00570"></a>00570 <span class="comment">**  an entry point to marshal pointers-to-functions.</span>
-<a name="l00571"></a>00571 <span class="comment">**  Needed by .NET and possibly other language bindings.</span>
-<a name="l00572"></a>00572 <span class="comment">*/</span>
-<a name="l00573"></a>00573 TIDY_EXPORT Bool TIDY_CALL <a class="code" href="group__IO.html#gab446af273e331cb0440dd01b6990d2d0">tidyInitSource</a>( <a class="code" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a>*  source,
-<a name="l00574"></a>00574                                           <span class="keywordtype">void</span>*             srcData,
-<a name="l00575"></a>00575                                           <a class="code" href="group__IO.html#ga6951f79d4b50288e96a3896ab01393d6">TidyGetByteFunc</a>   gbFunc,
-<a name="l00576"></a>00576                                           <a class="code" href="group__IO.html#ga298b882c5fc7cc969ef58fb187bdd371">TidyUngetByteFunc</a> ugbFunc,
-<a name="l00577"></a>00577                                           <a class="code" href="group__IO.html#ga9f8e1bb4c4740ffb399ec424594c4972">TidyEOFFunc</a>       endFunc );
-<a name="l00578"></a>00578 <span class="comment"></span>
-<a name="l00579"></a>00579 <span class="comment">/** Helper: get next byte from input source */</span>
-<a name="l00580"></a>00580 TIDY_EXPORT uint TIDY_CALL <a class="code" href="group__IO.html#gadba396ffec9f29b27d73a23264dcfa0b">tidyGetByte</a>( <a class="code" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a>* source );
-<a name="l00581"></a>00581 <span class="comment"></span>
-<a name="l00582"></a>00582 <span class="comment">/** Helper: unget byte back to input source */</span>
-<a name="l00583"></a>00583 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="group__IO.html#ga0c8d46de315cabb0ac7d2cf01ca183d7">tidyUngetByte</a>( <a class="code" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a>* source, uint byteValue );
-<a name="l00584"></a>00584 <span class="comment"></span>
-<a name="l00585"></a>00585 <span class="comment">/** Helper: check if input source at end */</span>
-<a name="l00586"></a>00586 TIDY_EXPORT Bool TIDY_CALL <a class="code" href="group__IO.html#ga399df5ba17614205964a665f7b1726a6">tidyIsEOF</a>( <a class="code" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a>* source );
-<a name="l00587"></a>00587 
-<a name="l00588"></a>00588 
-<a name="l00589"></a>00589 <span class="comment">/****************</span>
-<a name="l00590"></a>00590 <span class="comment">   Output Sink</span>
-<a name="l00591"></a>00591 <span class="comment">****************/</span><span class="comment"></span>
-<a name="l00592"></a>00592 <span class="comment">/** Output callback: send a byte to output */</span>
-<a name="l00593"></a><a class="code" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">00593</a> <span class="keyword">typedef</span> void (TIDY_CALL *<a class="code" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a>)( <span class="keywordtype">void</span>* sinkData, byte bt );
-<a name="l00594"></a>00594 
-<a name="l00595"></a>00595 <span class="comment"></span>
-<a name="l00596"></a>00596 <span class="comment">/** TidyOutputSink - accepts raw bytes of output</span>
-<a name="l00597"></a>00597 <span class="comment">*/</span>
-<a name="l00598"></a>00598 TIDY_STRUCT
-<a name="l00599"></a><a class="code" href="struct__TidyOutputSink.html">00599</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct__TidyOutputSink.html">_TidyOutputSink</a>
-<a name="l00600"></a>00600 {
-<a name="l00601"></a>00601   <span class="comment">/* Instance data */</span>
-<a name="l00602"></a><a class="code" href="struct__TidyOutputSink.html#a8ea61dfa1ce4ba41a7a9c50b7729ab8a">00602</a>   <span class="keywordtype">void</span>*               <a class="code" href="struct__TidyOutputSink.html#a8ea61dfa1ce4ba41a7a9c50b7729ab8a">sinkData</a>;  <span class="comment">/**&lt; Output context.  Passed to callbacks */</span>
-<a name="l00603"></a>00603 
-<a name="l00604"></a>00604   <span class="comment">/* Methods */</span>
-<a name="l00605"></a><a class="code" href="struct__TidyOutputSink.html#a0b392463d9767dc9fbed2f524fbe7407">00605</a>   <a class="code" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a>     <a class="code" href="struct__TidyOutputSink.html#a0b392463d9767dc9fbed2f524fbe7407">putByte</a>;   <span class="comment">/**&lt; Pointer to &quot;put byte&quot; callback */</span>
-<a name="l00606"></a>00606 } <a class="code" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a>;
-<a name="l00607"></a>00607 <span class="comment"></span>
-<a name="l00608"></a>00608 <span class="comment">/** Facilitates user defined sinks by providing</span>
-<a name="l00609"></a>00609 <span class="comment">**  an entry point to marshal pointers-to-functions.</span>
-<a name="l00610"></a>00610 <span class="comment">**  Needed by .NET and possibly other language bindings.</span>
-<a name="l00611"></a>00611 <span class="comment">*/</span>
-<a name="l00612"></a>00612 TIDY_EXPORT Bool TIDY_CALL <a class="code" href="group__IO.html#ga7e93289be3a7253cdf99a96285e6a2d4">tidyInitSink</a>( <a class="code" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a>* sink, 
-<a name="l00613"></a>00613                                         <span class="keywordtype">void</span>*           snkData,
-<a name="l00614"></a>00614                                         <a class="code" href="group__IO.html#ga63bcce5aa5f52e4e2e22aedd750b8bbc">TidyPutByteFunc</a> pbFunc );
-<a name="l00615"></a>00615 <span class="comment"></span>
-<a name="l00616"></a>00616 <span class="comment">/** Helper: send a byte to output */</span>
-<a name="l00617"></a>00617 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL <a class="code" href="group__IO.html#ga2a34772782d7b786e37012fce4cd2425">tidyPutByte</a>( <a class="code" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a>* sink, uint byteValue );
-<a name="l00618"></a>00618 
-<a name="l00619"></a>00619 <span class="comment"></span>
-<a name="l00620"></a>00620 <span class="comment">/** Callback to filter messages by diagnostic level:</span>
-<a name="l00621"></a>00621 <span class="comment">**  info, warning, etc.  Just set diagnostic output </span>
-<a name="l00622"></a>00622 <span class="comment">**  handler to redirect all diagnostics output.  Return true</span>
-<a name="l00623"></a>00623 <span class="comment">**  to proceed with output, false to cancel.</span>
-<a name="l00624"></a>00624 <span class="comment">*/</span>
-<a name="l00625"></a><a class="code" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">00625</a> <span class="keyword">typedef</span> Bool (TIDY_CALL *<a class="code" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a>)( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, TidyReportLevel lvl,
-<a name="l00626"></a>00626                                            uint line, uint col, ctmbstr mssg );
-<a name="l00627"></a>00627 <span class="comment"></span>
-<a name="l00628"></a>00628 <span class="comment">/** Give Tidy a filter callback to use */</span>
-<a name="l00629"></a>00629 TIDY_EXPORT Bool TIDY_CALL    <a class="code" href="group__IO.html#ga51e02523601388bb83c2555b995e68b0">tidySetReportFilter</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc,
-<a name="l00630"></a>00630                                                   <a class="code" href="group__IO.html#ga29c5bee28b95924a97ea4fbb81668c5e">TidyReportFilter</a> filtCallback );
-<a name="l00631"></a>00631 <span class="comment"></span>
-<a name="l00632"></a>00632 <span class="comment">/** Set error sink to named file */</span>
-<a name="l00633"></a>00633 TIDY_EXPORT FILE* TIDY_CALL   <a class="code" href="group__IO.html#ga669758031bbd5d4ba957b19e77229c8b">tidySetErrorFile</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr errfilnam );<span class="comment"></span>
-<a name="l00634"></a>00634 <span class="comment">/** Set error sink to given buffer */</span>
-<a name="l00635"></a>00635 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL     <a class="code" href="group__IO.html#ga5e5cffe93edf4bea0d3214be70d6f77b">tidySetErrorBuffer</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* errbuf );<span class="comment"></span>
-<a name="l00636"></a>00636 <span class="comment">/** Set error sink to given generic sink */</span>
-<a name="l00637"></a>00637 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL     <a class="code" href="group__IO.html#gad47c75f3af85e7927e7ac18918ec6363">tidySetErrorSink</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a>* sink );
-<a name="l00638"></a>00638 <span class="comment"></span>
-<a name="l00639"></a>00639 <span class="comment">/** @} end IO group */</span>
-<a name="l00640"></a>00640 
-<a name="l00641"></a>00641 <span class="comment">/* TODO: Catalog all messages for easy translation</span>
-<a name="l00642"></a>00642 <span class="comment">TIDY_EXPORT ctmbstr     tidyLookupMessage( int errorNo );</span>
-<a name="l00643"></a>00643 <span class="comment">*/</span>
-<a name="l00644"></a>00644 
-<a name="l00645"></a>00645 
-<a name="l00646"></a>00646 <span class="comment"></span>
-<a name="l00647"></a>00647 <span class="comment">/** @defgroup Parse Document Parse</span>
-<a name="l00648"></a>00648 <span class="comment">**</span>
-<a name="l00649"></a>00649 <span class="comment">** Parse markup from a given input source.  String and filename </span>
-<a name="l00650"></a>00650 <span class="comment">** functions added for convenience.  HTML/XHTML version determined</span>
-<a name="l00651"></a>00651 <span class="comment">** from input.</span>
-<a name="l00652"></a>00652 <span class="comment">** @{</span>
-<a name="l00653"></a>00653 <span class="comment">*/</span>
-<a name="l00654"></a>00654 <span class="comment"></span>
-<a name="l00655"></a>00655 <span class="comment">/** Parse markup in named file */</span>
-<a name="l00656"></a>00656 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Parse.html#ga5ec263f2e430dd9c9e10437f067b2a28">tidyParseFile</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr filename );
-<a name="l00657"></a>00657 <span class="comment"></span>
-<a name="l00658"></a>00658 <span class="comment">/** Parse markup from the standard input */</span>
-<a name="l00659"></a>00659 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Parse.html#ga96b41ff6e6a7f9d0b9b0e901e33ad31d">tidyParseStdin</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00660"></a>00660 <span class="comment"></span>
-<a name="l00661"></a>00661 <span class="comment">/** Parse markup in given string */</span>
-<a name="l00662"></a>00662 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Parse.html#ga50c02fa244dcd120ae339719c2132ff9">tidyParseString</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr content );
-<a name="l00663"></a>00663 <span class="comment"></span>
-<a name="l00664"></a>00664 <span class="comment">/** Parse markup in given buffer */</span>
-<a name="l00665"></a>00665 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Parse.html#gaa28ce34c95750f150205843885317851">tidyParseBuffer</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00666"></a>00666 <span class="comment"></span>
-<a name="l00667"></a>00667 <span class="comment">/** Parse markup in given generic input source */</span>
-<a name="l00668"></a>00668 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Parse.html#gaa65dad2a4ca5fa97d267ddefe1180e0e">tidyParseSource</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="group__IO.html#ga86fcc3c86bd63b26a559938bc38d34bb">TidyInputSource</a>* source);
-<a name="l00669"></a>00669 <span class="comment"></span>
-<a name="l00670"></a>00670 <span class="comment">/** @} End Parse group */</span>
-<a name="l00671"></a>00671 
-<a name="l00672"></a>00672 <span class="comment"></span>
-<a name="l00673"></a>00673 <span class="comment">/** @defgroup Clean Diagnostics and Repair</span>
-<a name="l00674"></a>00674 <span class="comment">**</span>
-<a name="l00675"></a>00675 <span class="comment">** @{</span>
-<a name="l00676"></a>00676 <span class="comment">*/</span><span class="comment"></span>
-<a name="l00677"></a>00677 <span class="comment">/** Execute configured cleanup and repair operations on parsed markup */</span>
-<a name="l00678"></a>00678 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Clean.html#ga11fd23eeb4acfaa0f9501effa0c21269">tidyCleanAndRepair</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00679"></a>00679 <span class="comment"></span>
-<a name="l00680"></a>00680 <span class="comment">/** Run configured diagnostics on parsed and repaired markup. </span>
-<a name="l00681"></a>00681 <span class="comment">**  Must call tidyCleanAndRepair() first.</span>
-<a name="l00682"></a>00682 <span class="comment">*/</span>
-<a name="l00683"></a>00683 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Clean.html#ga6170500974cc02114f6e4a29d44b7d77">tidyRunDiagnostics</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00684"></a>00684 <span class="comment"></span>
-<a name="l00685"></a>00685 <span class="comment">/** @} end Clean group */</span>
-<a name="l00686"></a>00686 
-<a name="l00687"></a>00687 <span class="comment"></span>
-<a name="l00688"></a>00688 <span class="comment">/** @defgroup Save Document Save Functions</span>
-<a name="l00689"></a>00689 <span class="comment">**</span>
-<a name="l00690"></a>00690 <span class="comment">** Save currently parsed document to the given output sink.  File name</span>
-<a name="l00691"></a>00691 <span class="comment">** and string/buffer functions provided for convenience.</span>
-<a name="l00692"></a>00692 <span class="comment">** @{</span>
-<a name="l00693"></a>00693 <span class="comment">*/</span>
-<a name="l00694"></a>00694 <span class="comment"></span>
-<a name="l00695"></a>00695 <span class="comment">/** Save to named file */</span>
-<a name="l00696"></a>00696 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Save.html#ga19ee6e2ee0e719a97cff443ebb19ae44">tidySaveFile</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr filename );
-<a name="l00697"></a>00697 <span class="comment"></span>
-<a name="l00698"></a>00698 <span class="comment">/** Save to standard output (FILE*) */</span>
-<a name="l00699"></a>00699 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Save.html#ga6638d1800ee63fc6bea19bc2bf582be2">tidySaveStdout</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00700"></a>00700 <span class="comment"></span>
-<a name="l00701"></a>00701 <span class="comment">/** Save to given TidyBuffer object */</span>
-<a name="l00702"></a>00702 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Save.html#ga7e8642262c8c4d34cf7cc426647d29f0">tidySaveBuffer</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00703"></a>00703 <span class="comment"></span>
-<a name="l00704"></a>00704 <span class="comment">/** Save document to application buffer.  If buffer is not big enough,</span>
-<a name="l00705"></a>00705 <span class="comment">**  ENOMEM will be returned and the necessary buffer size will be placed</span>
-<a name="l00706"></a>00706 <span class="comment">**  in *buflen.</span>
-<a name="l00707"></a>00707 <span class="comment">*/</span>
-<a name="l00708"></a>00708 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Save.html#gaf684fefd3e42f459cf0a4ebe937ce12b">tidySaveString</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc,
-<a name="l00709"></a>00709                                                  tmbstr buffer, uint* buflen );
-<a name="l00710"></a>00710 <span class="comment"></span>
-<a name="l00711"></a>00711 <span class="comment">/** Save to given generic output sink */</span>
-<a name="l00712"></a>00712 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Save.html#gaea985b28470453d0218092b137f71e77">tidySaveSink</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a>* sink );
-<a name="l00713"></a>00713 <span class="comment"></span>
-<a name="l00714"></a>00714 <span class="comment">/** @} end Save group */</span>
-<a name="l00715"></a>00715 
-<a name="l00716"></a>00716 <span class="comment"></span>
-<a name="l00717"></a>00717 <span class="comment">/** @addtogroup Basic</span>
-<a name="l00718"></a>00718 <span class="comment">** @{</span>
-<a name="l00719"></a>00719 <span class="comment">*/</span><span class="comment"></span>
-<a name="l00720"></a>00720 <span class="comment">/** Save current settings to named file.</span>
-<a name="l00721"></a>00721 <span class="comment">    Only non-default values are written. */</span>
-<a name="l00722"></a>00722 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Basic.html#gaaa6e0510b0d7ca0524c928143488c6ca">tidyOptSaveFile</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, ctmbstr cfgfil );
-<a name="l00723"></a>00723 <span class="comment"></span>
-<a name="l00724"></a>00724 <span class="comment">/** Save current settings to given output sink.</span>
-<a name="l00725"></a>00725 <span class="comment">    Only non-default values are written. */</span>
-<a name="l00726"></a>00726 TIDY_EXPORT <span class="keywordtype">int</span> TIDY_CALL         <a class="code" href="group__Basic.html#gabf30cc37e3e7aa07dd351f083ab747ee">tidyOptSaveSink</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="group__IO.html#ga6bdd15de48364d2b5dbf2141109d3f98">TidyOutputSink</a>* sink );
-<a name="l00727"></a>00727 
-<a name="l00728"></a>00728 
-<a name="l00729"></a>00729 <span class="comment">/* Error reporting functions </span>
-<a name="l00730"></a>00730 <span class="comment">*/</span>
-<a name="l00731"></a>00731 <span class="comment"></span>
-<a name="l00732"></a>00732 <span class="comment">/** Write more complete information about errors to current error sink. */</span>
-<a name="l00733"></a>00733 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL        <a class="code" href="group__Basic.html#ga4c050ea7d2746db948ad45edb2264d70">tidyErrorSummary</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00734"></a>00734 <span class="comment"></span>
-<a name="l00735"></a>00735 <span class="comment">/** Write more general information about markup to current error sink. */</span>
-<a name="l00736"></a>00736 TIDY_EXPORT <span class="keywordtype">void</span> TIDY_CALL        <a class="code" href="group__Basic.html#ga28384bf13bf6962c8ef0bcab9b4b7971">tidyGeneralInfo</a>( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00737"></a>00737 <span class="comment"></span>
-<a name="l00738"></a>00738 <span class="comment">/** @} end Basic group (again) */</span>
-<a name="l00739"></a>00739 
-<a name="l00740"></a>00740 <span class="comment"></span>
-<a name="l00741"></a>00741 <span class="comment">/** @defgroup Tree Document Tree</span>
-<a name="l00742"></a>00742 <span class="comment">**</span>
-<a name="l00743"></a>00743 <span class="comment">** A parsed and, optionally, repaired document is</span>
-<a name="l00744"></a>00744 <span class="comment">** represented by Tidy as a Tree, much like a W3C DOM.</span>
-<a name="l00745"></a>00745 <span class="comment">** This tree may be traversed using these functions.</span>
-<a name="l00746"></a>00746 <span class="comment">** The following snippet gives a basic idea how these</span>
-<a name="l00747"></a>00747 <span class="comment">** functions can be used.</span>
-<a name="l00748"></a>00748 <span class="comment">**</span>
-<a name="l00749"></a>00749 <span class="comment">&lt;pre&gt;</span>
-<a name="l00750"></a>00750 <span class="comment">void dumpNode( TidyNode tnod, int indent )</span>
-<a name="l00751"></a>00751 <span class="comment">{</span>
-<a name="l00752"></a>00752 <span class="comment">  TidyNode child;</span>
-<a name="l00753"></a>00753 <span class="comment"></span>
-<a name="l00754"></a>00754 <span class="comment">  for ( child = tidyGetChild(tnod); child; child = tidyGetNext(child) )</span>
-<a name="l00755"></a>00755 <span class="comment">  {</span>
-<a name="l00756"></a>00756 <span class="comment">    ctmbstr name;</span>
-<a name="l00757"></a>00757 <span class="comment">    switch ( tidyNodeGetType(child) )</span>
-<a name="l00758"></a>00758 <span class="comment">    {</span>
-<a name="l00759"></a>00759 <span class="comment">    case TidyNode_Root:       name = &quot;Root&quot;;                    break;</span>
-<a name="l00760"></a>00760 <span class="comment">    case TidyNode_DocType:    name = &quot;DOCTYPE&quot;;                 break;</span>
-<a name="l00761"></a>00761 <span class="comment">    case TidyNode_Comment:    name = &quot;Comment&quot;;                 break;</span>
-<a name="l00762"></a>00762 <span class="comment">    case TidyNode_ProcIns:    name = &quot;Processing Instruction&quot;;  break;</span>
-<a name="l00763"></a>00763 <span class="comment">    case TidyNode_Text:       name = &quot;Text&quot;;                    break;</span>
-<a name="l00764"></a>00764 <span class="comment">    case TidyNode_CDATA:      name = &quot;CDATA&quot;;                   break;</span>
-<a name="l00765"></a>00765 <span class="comment">    case TidyNode_Section:    name = &quot;XML Section&quot;;             break;</span>
-<a name="l00766"></a>00766 <span class="comment">    case TidyNode_Asp:        name = &quot;ASP&quot;;                     break;</span>
-<a name="l00767"></a>00767 <span class="comment">    case TidyNode_Jste:       name = &quot;JSTE&quot;;                    break;</span>
-<a name="l00768"></a>00768 <span class="comment">    case TidyNode_Php:        name = &quot;PHP&quot;;                     break;</span>
-<a name="l00769"></a>00769 <span class="comment">    case TidyNode_XmlDecl:    name = &quot;XML Declaration&quot;;         break;</span>
-<a name="l00770"></a>00770 <span class="comment"></span>
-<a name="l00771"></a>00771 <span class="comment">    case TidyNode_Start:</span>
-<a name="l00772"></a>00772 <span class="comment">    case TidyNode_End:</span>
-<a name="l00773"></a>00773 <span class="comment">    case TidyNode_StartEnd:</span>
-<a name="l00774"></a>00774 <span class="comment">    default:</span>
-<a name="l00775"></a>00775 <span class="comment">      name = tidyNodeGetName( child );</span>
-<a name="l00776"></a>00776 <span class="comment">      break;</span>
-<a name="l00777"></a>00777 <span class="comment">    }</span>
-<a name="l00778"></a>00778 <span class="comment">    assert( name != NULL );</span>
-<a name="l00779"></a>00779 <span class="comment">    printf( &quot;\%*.*sNode: \%s\\n&quot;, indent, indent, &quot; &quot;, name );</span>
-<a name="l00780"></a>00780 <span class="comment">    dumpNode( child, indent + 4 );</span>
-<a name="l00781"></a>00781 <span class="comment">  }</span>
-<a name="l00782"></a>00782 <span class="comment">}</span>
-<a name="l00783"></a>00783 <span class="comment"></span>
-<a name="l00784"></a>00784 <span class="comment">void dumpDoc( TidyDoc tdoc )</span>
-<a name="l00785"></a>00785 <span class="comment">{</span>
-<a name="l00786"></a>00786 <span class="comment">  dumpNode( tidyGetRoot(tdoc), 0 );</span>
-<a name="l00787"></a>00787 <span class="comment">}</span>
-<a name="l00788"></a>00788 <span class="comment"></span>
-<a name="l00789"></a>00789 <span class="comment">void dumpBody( TidyDoc tdoc )</span>
-<a name="l00790"></a>00790 <span class="comment">{</span>
-<a name="l00791"></a>00791 <span class="comment">  dumpNode( tidyGetBody(tdoc), 0 );</span>
-<a name="l00792"></a>00792 <span class="comment">}</span>
-<a name="l00793"></a>00793 <span class="comment">&lt;/pre&gt;</span>
-<a name="l00794"></a>00794 <span class="comment"></span>
-<a name="l00795"></a>00795 <span class="comment">@{</span>
-<a name="l00796"></a>00796 <span class="comment"></span>
-<a name="l00797"></a>00797 <span class="comment">*/</span>
-<a name="l00798"></a>00798 
-<a name="l00799"></a>00799 TIDY_EXPORT <a class="code" href="structTidyNode.html">TidyNode</a> TIDY_CALL    tidyGetRoot( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00800"></a>00800 TIDY_EXPORT <a class="code" href="structTidyNode.html">TidyNode</a> TIDY_CALL    tidyGetHtml( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00801"></a>00801 TIDY_EXPORT <a class="code" href="structTidyNode.html">TidyNode</a> TIDY_CALL    tidyGetHead( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00802"></a>00802 TIDY_EXPORT <a class="code" href="structTidyNode.html">TidyNode</a> TIDY_CALL    tidyGetBody( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc );
-<a name="l00803"></a>00803 
-<a name="l00804"></a>00804 <span class="comment">/* parent / child */</span>
-<a name="l00805"></a>00805 TIDY_EXPORT <a class="code" href="structTidyNode.html">TidyNode</a> TIDY_CALL    tidyGetParent( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00806"></a>00806 TIDY_EXPORT <a class="code" href="structTidyNode.html">TidyNode</a> TIDY_CALL    tidyGetChild( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00807"></a>00807 
-<a name="l00808"></a>00808 <span class="comment">/* siblings */</span>
-<a name="l00809"></a>00809 TIDY_EXPORT <a class="code" href="structTidyNode.html">TidyNode</a> TIDY_CALL    tidyGetNext( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00810"></a>00810 TIDY_EXPORT <a class="code" href="structTidyNode.html">TidyNode</a> TIDY_CALL    tidyGetPrev( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00811"></a>00811 
-<a name="l00812"></a>00812 <span class="comment">/* Null for non-element nodes and all pure HTML</span>
-<a name="l00813"></a>00813 <span class="comment">TIDY_EXPORT ctmbstr     tidyNodeNsLocal( TidyNode tnod );</span>
-<a name="l00814"></a>00814 <span class="comment">TIDY_EXPORT ctmbstr     tidyNodeNsPrefix( TidyNode tnod );</span>
-<a name="l00815"></a>00815 <span class="comment">TIDY_EXPORT ctmbstr     tidyNodeNsUri( TidyNode tnod );</span>
-<a name="l00816"></a>00816 <span class="comment">*/</span>
-<a name="l00817"></a>00817 
-<a name="l00818"></a>00818 <span class="comment">/* Iterate over attribute values */</span>
-<a name="l00819"></a>00819 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL    tidyAttrFirst( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00820"></a>00820 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL    tidyAttrNext( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00821"></a>00821 
-<a name="l00822"></a>00822 TIDY_EXPORT ctmbstr TIDY_CALL     tidyAttrName( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00823"></a>00823 TIDY_EXPORT ctmbstr TIDY_CALL     tidyAttrValue( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00824"></a>00824 
-<a name="l00825"></a>00825 <span class="comment">/* Null for pure HTML</span>
-<a name="l00826"></a>00826 <span class="comment">TIDY_EXPORT ctmbstr     tidyAttrNsLocal( TidyAttr tattr );</span>
-<a name="l00827"></a>00827 <span class="comment">TIDY_EXPORT ctmbstr     tidyAttrNsPrefix( TidyAttr tattr );</span>
-<a name="l00828"></a>00828 <span class="comment">TIDY_EXPORT ctmbstr     tidyAttrNsUri( TidyAttr tattr );</span>
-<a name="l00829"></a>00829 <span class="comment">*/</span>
-<a name="l00830"></a>00830 <span class="comment"></span>
-<a name="l00831"></a>00831 <span class="comment">/** @} end Tree group */</span>
-<a name="l00832"></a>00832 
-<a name="l00833"></a>00833 <span class="comment"></span>
-<a name="l00834"></a>00834 <span class="comment">/** @defgroup NodeAsk Node Interrogation</span>
-<a name="l00835"></a>00835 <span class="comment">**</span>
-<a name="l00836"></a>00836 <span class="comment">** Get information about any givent node.</span>
-<a name="l00837"></a>00837 <span class="comment">** @{</span>
-<a name="l00838"></a>00838 <span class="comment">*/</span>
-<a name="l00839"></a>00839 
-<a name="l00840"></a>00840 <span class="comment">/* Node info */</span>
-<a name="l00841"></a>00841 TIDY_EXPORT TidyNodeType TIDY_CALL tidyNodeGetType( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00842"></a>00842 TIDY_EXPORT ctmbstr TIDY_CALL     tidyNodeGetName( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00843"></a>00843 
-<a name="l00844"></a>00844 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsText( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00845"></a>00845 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsProp( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00846"></a>00846 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsHeader( <a class="code" href="structTidyNode.html">TidyNode</a> tnod ); <span class="comment">/* h1, h2, ... */</span>
-<a name="l00847"></a>00847 
-<a name="l00848"></a>00848 TIDY_EXPORT Bool TIDY_CALL tidyNodeHasText( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00849"></a>00849 TIDY_EXPORT Bool TIDY_CALL tidyNodeGetText( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="structTidyNode.html">TidyNode</a> tnod, <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00850"></a>00850 
-<a name="l00851"></a>00851 <span class="comment">/* Copy the unescaped value of this node into the given TidyBuffer as UTF-8 */</span>
-<a name="l00852"></a>00852 TIDY_EXPORT Bool TIDY_CALL tidyNodeGetValue( <a class="code" href="structTidyDoc.html">TidyDoc</a> tdoc, <a class="code" href="structTidyNode.html">TidyNode</a> tnod, <a class="code" href="struct__TidyBuffer.html">TidyBuffer</a>* buf );
-<a name="l00853"></a>00853 
-<a name="l00854"></a>00854 TIDY_EXPORT TidyTagId TIDY_CALL tidyNodeGetId( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00855"></a>00855 
-<a name="l00856"></a>00856 TIDY_EXPORT uint TIDY_CALL tidyNodeLine( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00857"></a>00857 TIDY_EXPORT uint TIDY_CALL tidyNodeColumn( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00858"></a>00858 <span class="comment"></span>
-<a name="l00859"></a>00859 <span class="comment">/** @defgroup NodeIsElementName Deprecated node interrogation per TagId</span>
-<a name="l00860"></a>00860 <span class="comment">**</span>
-<a name="l00861"></a>00861 <span class="comment">** @deprecated The functions tidyNodeIs{ElementName} are deprecated and </span>
-<a name="l00862"></a>00862 <span class="comment">** should be replaced by tidyNodeGetId.</span>
-<a name="l00863"></a>00863 <span class="comment">** @{</span>
-<a name="l00864"></a>00864 <span class="comment">*/</span>
-<a name="l00865"></a>00865 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsHTML( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00866"></a>00866 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsHEAD( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00867"></a>00867 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsTITLE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00868"></a>00868 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsBASE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00869"></a>00869 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsMETA( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00870"></a>00870 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsBODY( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00871"></a>00871 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsFRAMESET( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00872"></a>00872 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsFRAME( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00873"></a>00873 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsIFRAME( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00874"></a>00874 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsNOFRAMES( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00875"></a>00875 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsHR( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00876"></a>00876 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsH1( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00877"></a>00877 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsH2( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00878"></a>00878 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsPRE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00879"></a>00879 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsLISTING( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00880"></a>00880 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsP( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00881"></a>00881 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsUL( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00882"></a>00882 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsOL( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00883"></a>00883 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsDL( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00884"></a>00884 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsDIR( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00885"></a>00885 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsLI( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00886"></a>00886 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsDT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00887"></a>00887 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsDD( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00888"></a>00888 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsTABLE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00889"></a>00889 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsCAPTION( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00890"></a>00890 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsTD( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00891"></a>00891 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsTH( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00892"></a>00892 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsTR( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00893"></a>00893 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsCOL( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00894"></a>00894 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsCOLGROUP( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00895"></a>00895 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsBR( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00896"></a>00896 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsA( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00897"></a>00897 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsLINK( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00898"></a>00898 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsB( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00899"></a>00899 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsI( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00900"></a>00900 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsSTRONG( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00901"></a>00901 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsEM( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00902"></a>00902 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsBIG( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00903"></a>00903 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsSMALL( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00904"></a>00904 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsPARAM( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00905"></a>00905 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsOPTION( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00906"></a>00906 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsOPTGROUP( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00907"></a>00907 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsIMG( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00908"></a>00908 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsMAP( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00909"></a>00909 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsAREA( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00910"></a>00910 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsNOBR( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00911"></a>00911 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsWBR( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00912"></a>00912 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsFONT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00913"></a>00913 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsLAYER( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00914"></a>00914 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsSPACER( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00915"></a>00915 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsCENTER( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00916"></a>00916 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsSTYLE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00917"></a>00917 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsSCRIPT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00918"></a>00918 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsNOSCRIPT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00919"></a>00919 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsFORM( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00920"></a>00920 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsTEXTAREA( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00921"></a>00921 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsBLOCKQUOTE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00922"></a>00922 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsAPPLET( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00923"></a>00923 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsOBJECT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00924"></a>00924 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsDIV( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00925"></a>00925 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsSPAN( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00926"></a>00926 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsINPUT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00927"></a>00927 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsQ( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00928"></a>00928 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsLABEL( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00929"></a>00929 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsH3( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00930"></a>00930 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsH4( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00931"></a>00931 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsH5( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00932"></a>00932 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsH6( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00933"></a>00933 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsADDRESS( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00934"></a>00934 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsXMP( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00935"></a>00935 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsSELECT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00936"></a>00936 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsBLINK( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00937"></a>00937 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsMARQUEE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00938"></a>00938 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsEMBED( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00939"></a>00939 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsBASEFONT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00940"></a>00940 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsISINDEX( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00941"></a>00941 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsS( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00942"></a>00942 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsSTRIKE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00943"></a>00943 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsU( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00944"></a>00944 TIDY_EXPORT Bool TIDY_CALL tidyNodeIsMENU( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l00945"></a>00945 <span class="comment"></span>
-<a name="l00946"></a>00946 <span class="comment">/** @} End NodeIsElementName group */</span>
-<a name="l00947"></a>00947 <span class="comment"></span>
-<a name="l00948"></a>00948 <span class="comment">/** @} End NodeAsk group */</span>
-<a name="l00949"></a>00949 
-<a name="l00950"></a>00950 <span class="comment"></span>
-<a name="l00951"></a>00951 <span class="comment">/** @defgroup Attribute Attribute Interrogation</span>
-<a name="l00952"></a>00952 <span class="comment">**</span>
-<a name="l00953"></a>00953 <span class="comment">** Get information about any given attribute.</span>
-<a name="l00954"></a>00954 <span class="comment">** @{</span>
-<a name="l00955"></a>00955 <span class="comment">*/</span>
-<a name="l00956"></a>00956 
-<a name="l00957"></a>00957 TIDY_EXPORT TidyAttrId TIDY_CALL tidyAttrGetId( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00958"></a>00958 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsEvent( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00959"></a>00959 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsProp( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00960"></a>00960 <span class="comment"></span>
-<a name="l00961"></a>00961 <span class="comment">/** @defgroup AttrIsAttributeName Deprecated attribute interrogation per AttrId</span>
-<a name="l00962"></a>00962 <span class="comment">**</span>
-<a name="l00963"></a>00963 <span class="comment">** @deprecated The functions  tidyAttrIs{AttributeName} are deprecated and </span>
-<a name="l00964"></a>00964 <span class="comment">** should be replaced by tidyAttrGetId.</span>
-<a name="l00965"></a>00965 <span class="comment">** @{</span>
-<a name="l00966"></a>00966 <span class="comment">*/</span>
-<a name="l00967"></a>00967 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsHREF( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00968"></a>00968 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsSRC( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00969"></a>00969 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsID( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00970"></a>00970 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsNAME( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00971"></a>00971 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsSUMMARY( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00972"></a>00972 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsALT( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00973"></a>00973 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsLONGDESC( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00974"></a>00974 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsUSEMAP( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00975"></a>00975 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsISMAP( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00976"></a>00976 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsLANGUAGE( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00977"></a>00977 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsTYPE( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00978"></a>00978 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsVALUE( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00979"></a>00979 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsCONTENT( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00980"></a>00980 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsTITLE( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00981"></a>00981 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsXMLNS( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00982"></a>00982 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsDATAFLD( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00983"></a>00983 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsWIDTH( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00984"></a>00984 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsHEIGHT( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00985"></a>00985 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsFOR( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00986"></a>00986 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsSELECTED( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00987"></a>00987 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsCHECKED( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00988"></a>00988 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsLANG( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00989"></a>00989 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsTARGET( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00990"></a>00990 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsHTTP_EQUIV( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00991"></a>00991 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsREL( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00992"></a>00992 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsOnMOUSEMOVE( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00993"></a>00993 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsOnMOUSEDOWN( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00994"></a>00994 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsOnMOUSEUP( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00995"></a>00995 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsOnCLICK( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00996"></a>00996 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsOnMOUSEOVER( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00997"></a>00997 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsOnMOUSEOUT( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00998"></a>00998 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsOnKEYDOWN( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l00999"></a>00999 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsOnKEYUP( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01000"></a>01000 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsOnKEYPRESS( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01001"></a>01001 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsOnFOCUS( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01002"></a>01002 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsOnBLUR( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01003"></a>01003 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsBGCOLOR( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01004"></a>01004 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsLINK( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01005"></a>01005 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsALINK( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01006"></a>01006 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsVLINK( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01007"></a>01007 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsTEXT( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01008"></a>01008 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsSTYLE( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01009"></a>01009 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsABBR( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01010"></a>01010 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsCOLSPAN( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01011"></a>01011 TIDY_EXPORT Bool TIDY_CALL tidyAttrIsROWSPAN( <a class="code" href="structTidyAttr.html">TidyAttr</a> tattr );
-<a name="l01012"></a>01012 <span class="comment"></span>
-<a name="l01013"></a>01013 <span class="comment">/** @} End AttrIsAttributeName group */</span>
-<a name="l01014"></a>01014 <span class="comment"></span>
-<a name="l01015"></a>01015 <span class="comment">/** @} end AttrAsk group */</span>
-<a name="l01016"></a>01016 
-<a name="l01017"></a>01017 <span class="comment"></span>
-<a name="l01018"></a>01018 <span class="comment">/** @defgroup AttrGet Attribute Retrieval</span>
-<a name="l01019"></a>01019 <span class="comment">**</span>
-<a name="l01020"></a>01020 <span class="comment">** Lookup an attribute from a given node</span>
-<a name="l01021"></a>01021 <span class="comment">** @{</span>
-<a name="l01022"></a>01022 <span class="comment">*/</span>
-<a name="l01023"></a>01023 
-<a name="l01024"></a>01024 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetById( <a class="code" href="structTidyNode.html">TidyNode</a> tnod, TidyAttrId attId );
-<a name="l01025"></a>01025 <span class="comment"></span>
-<a name="l01026"></a>01026 <span class="comment">/** @defgroup AttrGetAttributeName Deprecated attribute retrieval per AttrId</span>
-<a name="l01027"></a>01027 <span class="comment">**</span>
-<a name="l01028"></a>01028 <span class="comment">** @deprecated The functions tidyAttrGet{AttributeName} are deprecated and </span>
-<a name="l01029"></a>01029 <span class="comment">** should be replaced by tidyAttrGetById.</span>
-<a name="l01030"></a>01030 <span class="comment">** For instance, tidyAttrGetID( TidyNode tnod ) can be replaced by </span>
-<a name="l01031"></a>01031 <span class="comment">** tidyAttrGetById( TidyNode tnod, TidyAttr_ID ). This avoids a potential</span>
-<a name="l01032"></a>01032 <span class="comment">** name clash with tidyAttrGetId for case-insensitive languages.</span>
-<a name="l01033"></a>01033 <span class="comment">** @{</span>
-<a name="l01034"></a>01034 <span class="comment">*/</span>
-<a name="l01035"></a>01035 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetHREF( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01036"></a>01036 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetSRC( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01037"></a>01037 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetID( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01038"></a>01038 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetNAME( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01039"></a>01039 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetSUMMARY( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01040"></a>01040 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetALT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01041"></a>01041 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetLONGDESC( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01042"></a>01042 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetUSEMAP( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01043"></a>01043 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetISMAP( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01044"></a>01044 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetLANGUAGE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01045"></a>01045 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetTYPE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01046"></a>01046 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetVALUE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01047"></a>01047 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetCONTENT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01048"></a>01048 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetTITLE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01049"></a>01049 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetXMLNS( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01050"></a>01050 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetDATAFLD( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01051"></a>01051 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetWIDTH( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01052"></a>01052 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetHEIGHT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01053"></a>01053 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetFOR( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01054"></a>01054 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetSELECTED( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01055"></a>01055 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetCHECKED( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01056"></a>01056 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetLANG( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01057"></a>01057 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetTARGET( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01058"></a>01058 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetHTTP_EQUIV( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01059"></a>01059 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetREL( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01060"></a>01060 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetOnMOUSEMOVE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01061"></a>01061 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetOnMOUSEDOWN( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01062"></a>01062 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetOnMOUSEUP( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01063"></a>01063 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetOnCLICK( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01064"></a>01064 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetOnMOUSEOVER( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01065"></a>01065 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetOnMOUSEOUT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01066"></a>01066 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetOnKEYDOWN( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01067"></a>01067 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetOnKEYUP( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01068"></a>01068 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetOnKEYPRESS( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01069"></a>01069 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetOnFOCUS( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01070"></a>01070 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetOnBLUR( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01071"></a>01071 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetBGCOLOR( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01072"></a>01072 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetLINK( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01073"></a>01073 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetALINK( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01074"></a>01074 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetVLINK( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01075"></a>01075 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetTEXT( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01076"></a>01076 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetSTYLE( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01077"></a>01077 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetABBR( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01078"></a>01078 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetCOLSPAN( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01079"></a>01079 TIDY_EXPORT <a class="code" href="structTidyAttr.html">TidyAttr</a> TIDY_CALL tidyAttrGetROWSPAN( <a class="code" href="structTidyNode.html">TidyNode</a> tnod );
-<a name="l01080"></a>01080 <span class="comment"></span>
-<a name="l01081"></a>01081 <span class="comment">/** @} End AttrGetAttributeName group */</span>
-<a name="l01082"></a>01082 <span class="comment"></span>
-<a name="l01083"></a>01083 <span class="comment">/** @} end AttrGet group */</span>
-<a name="l01084"></a>01084 
-<a name="l01085"></a>01085 <span class="preprocessor">#ifdef __cplusplus</span>
-<a name="l01086"></a>01086 <span class="preprocessor"></span>}  <span class="comment">/* extern &quot;C&quot; */</span>
-<a name="l01087"></a>01087 <span class="preprocessor">#endif</span>
-<a name="l01088"></a>01088 <span class="preprocessor"></span><span class="preprocessor">#endif </span><span class="comment">/* __TIDY_H__ */</span>
-<a name="l01089"></a>01089 
-<a name="l01090"></a>01090 <span class="comment">/*</span>
-<a name="l01091"></a>01091 <span class="comment"> * local variables:</span>
-<a name="l01092"></a>01092 <span class="comment"> * mode: c</span>
-<a name="l01093"></a>01093 <span class="comment"> * indent-tabs-mode: nil</span>
-<a name="l01094"></a>01094 <span class="comment"> * c-basic-offset: 4</span>
-<a name="l01095"></a>01095 <span class="comment"> * eval: (c-set-offset &#39;substatement-open 0)</span>
-<a name="l01096"></a>01096 <span class="comment"> * end:</span>
-<a name="l01097"></a>01097 <span class="comment"> */</span>
-</pre></div></div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><a class="el" href="tidy_8h.html">tidy.h</a>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidyenum_8h_source.html b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidyenum_8h_source.html
deleted file mode 100644
index a764d5e..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/api/tidyenum_8h_source.html
+++ /dev/null
@@ -1,835 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<meta http-equiv="X-UA-Compatible" content="IE=9"/>
-<title>HTML Tidy: tidyenum.h Source File</title>
-
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<link href="navtree.css" rel="stylesheet" type="text/css"/>
-<script type="text/javascript" src="jquery.js"></script>
-<script type="text/javascript" src="resize.js"></script>
-<script type="text/javascript" src="navtree.js"></script>
-<script type="text/javascript">
-  $(document).ready(initResizable);
-</script>
-
-
-</head>
-<body>
-<div id="top"><!-- do not remove this div! -->
-
-
-<div id="titlearea">
-<table cellspacing="0" cellpadding="0">
- <tbody>
- <tr style="height: 56px;">
-  
-  
-  <td style="padding-left: 0.5em;">
-   <div id="projectname">HTML Tidy
-   &#160;<span id="projectnumber">0.1</span>
-   </div>
-   
-  </td>
-  
-  
-  
-   
-  
- </tr>
- </tbody>
-</table>
-</div>
-
-<!-- Generated by Doxygen 1.8.0 -->
-</div>
-<div id="side-nav" class="ui-resizable side-nav-resizable">
-  <div id="nav-tree">
-    <div id="nav-tree-contents">
-    </div>
-  </div>
-  <div id="splitbar" style="-moz-user-select:none;" 
-       class="ui-resizable-handle">
-  </div>
-</div>
-<script type="text/javascript">
-  initNavTree('tidyenum_8h.html','');
-</script>
-<div id="doc-content">
-<div class="header">
-  <div class="headertitle">
-<div class="title">tidyenum.h</div>  </div>
-</div><!--header-->
-<div class="contents">
-<div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="preprocessor">#ifndef __TIDYENUM_H__</span>
-<a name="l00002"></a>00002 <span class="preprocessor"></span><span class="preprocessor">#define __TIDYENUM_H__</span>
-<a name="l00003"></a>00003 <span class="preprocessor"></span>
-<a name="l00004"></a>00004 <span class="comment">/* @file tidyenum.h -- Split public enums into separate header</span>
-<a name="l00005"></a>00005 <span class="comment"></span>
-<a name="l00006"></a>00006 <span class="comment">  Simplifies enum re-use in various wrappers.  e.g. SWIG</span>
-<a name="l00007"></a>00007 <span class="comment">  generated wrappers and COM IDL files.</span>
-<a name="l00008"></a>00008 <span class="comment"></span>
-<a name="l00009"></a>00009 <span class="comment">  Copyright (c) 1998-2008 World Wide Web Consortium</span>
-<a name="l00010"></a>00010 <span class="comment">  (Massachusetts Institute of Technology, European Research </span>
-<a name="l00011"></a>00011 <span class="comment">  Consortium for Informatics and Mathematics, Keio University).</span>
-<a name="l00012"></a>00012 <span class="comment">  All Rights Reserved.</span>
-<a name="l00013"></a>00013 <span class="comment"></span>
-<a name="l00014"></a>00014 <span class="comment">  CVS Info :</span>
-<a name="l00015"></a>00015 <span class="comment"></span>
-<a name="l00016"></a>00016 <span class="comment">    $Author: arnaud02 $ </span>
-<a name="l00017"></a>00017 <span class="comment">    $Date: 2008/06/18 20:18:54 $ </span>
-<a name="l00018"></a>00018 <span class="comment">    $Revision: 1.18 $ </span>
-<a name="l00019"></a>00019 <span class="comment"></span>
-<a name="l00020"></a>00020 <span class="comment">  Contributing Author(s):</span>
-<a name="l00021"></a>00021 <span class="comment"></span>
-<a name="l00022"></a>00022 <span class="comment">     Dave Raggett &lt;dsr@w3.org&gt;</span>
-<a name="l00023"></a>00023 <span class="comment"></span>
-<a name="l00024"></a>00024 <span class="comment">  The contributing author(s) would like to thank all those who</span>
-<a name="l00025"></a>00025 <span class="comment">  helped with testing, bug fixes and suggestions for improvements. </span>
-<a name="l00026"></a>00026 <span class="comment">  This wouldn&#39;t have been possible without your help.</span>
-<a name="l00027"></a>00027 <span class="comment"></span>
-<a name="l00028"></a>00028 <span class="comment">  COPYRIGHT NOTICE:</span>
-<a name="l00029"></a>00029 <span class="comment"> </span>
-<a name="l00030"></a>00030 <span class="comment">  This software and documentation is provided &quot;as is,&quot; and</span>
-<a name="l00031"></a>00031 <span class="comment">  the copyright holders and contributing author(s) make no</span>
-<a name="l00032"></a>00032 <span class="comment">  representations or warranties, express or implied, including</span>
-<a name="l00033"></a>00033 <span class="comment">  but not limited to, warranties of merchantability or fitness</span>
-<a name="l00034"></a>00034 <span class="comment">  for any particular purpose or that the use of the software or</span>
-<a name="l00035"></a>00035 <span class="comment">  documentation will not infringe any third party patents,</span>
-<a name="l00036"></a>00036 <span class="comment">  copyrights, trademarks or other rights. </span>
-<a name="l00037"></a>00037 <span class="comment"></span>
-<a name="l00038"></a>00038 <span class="comment">  The copyright holders and contributing author(s) will not be held</span>
-<a name="l00039"></a>00039 <span class="comment">  liable for any direct, indirect, special or consequential damages</span>
-<a name="l00040"></a>00040 <span class="comment">  arising out of any use of the software or documentation, even if</span>
-<a name="l00041"></a>00041 <span class="comment">  advised of the possibility of such damage.</span>
-<a name="l00042"></a>00042 <span class="comment"></span>
-<a name="l00043"></a>00043 <span class="comment">  Permission is hereby granted to use, copy, modify, and distribute</span>
-<a name="l00044"></a>00044 <span class="comment">  this source code, or portions hereof, documentation and executables,</span>
-<a name="l00045"></a>00045 <span class="comment">  for any purpose, without fee, subject to the following restrictions:</span>
-<a name="l00046"></a>00046 <span class="comment"></span>
-<a name="l00047"></a>00047 <span class="comment">  1. The origin of this source code must not be misrepresented.</span>
-<a name="l00048"></a>00048 <span class="comment">  2. Altered versions must be plainly marked as such and must</span>
-<a name="l00049"></a>00049 <span class="comment">     not be misrepresented as being the original source.</span>
-<a name="l00050"></a>00050 <span class="comment">  3. This Copyright notice may not be removed or altered from any</span>
-<a name="l00051"></a>00051 <span class="comment">     source or altered source distribution.</span>
-<a name="l00052"></a>00052 <span class="comment"> </span>
-<a name="l00053"></a>00053 <span class="comment">  The copyright holders and contributing author(s) specifically</span>
-<a name="l00054"></a>00054 <span class="comment">  permit, without fee, and encourage the use of this source code</span>
-<a name="l00055"></a>00055 <span class="comment">  as a component for supporting the Hypertext Markup Language in</span>
-<a name="l00056"></a>00056 <span class="comment">  commercial products. If you use this source code in a product,</span>
-<a name="l00057"></a>00057 <span class="comment">  acknowledgment is not required but would be appreciated.</span>
-<a name="l00058"></a>00058 <span class="comment"></span>
-<a name="l00059"></a>00059 <span class="comment"></span>
-<a name="l00060"></a>00060 <span class="comment">  Created 2001-05-20 by Charles Reitzel</span>
-<a name="l00061"></a>00061 <span class="comment">  Updated 2002-07-01 by Charles Reitzel - 1st Implementation</span>
-<a name="l00062"></a>00062 <span class="comment"></span>
-<a name="l00063"></a>00063 <span class="comment">*/</span>
-<a name="l00064"></a>00064 
-<a name="l00065"></a>00065 <span class="preprocessor">#ifdef __cplusplus</span>
-<a name="l00066"></a>00066 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">&quot;C&quot;</span> {
-<a name="l00067"></a>00067 <span class="preprocessor">#endif</span>
-<a name="l00068"></a>00068 <span class="preprocessor"></span>
-<a name="l00069"></a>00069 <span class="comment">/* Enumerate configuration options</span>
-<a name="l00070"></a>00070 <span class="comment">*/</span>
-<a name="l00071"></a>00071 <span class="comment"></span>
-<a name="l00072"></a>00072 <span class="comment">/** Categories of Tidy configuration options</span>
-<a name="l00073"></a>00073 <span class="comment">*/</span>
-<a name="l00074"></a>00074 <span class="keyword">typedef</span> <span class="keyword">enum</span>
-<a name="l00075"></a>00075 {
-<a name="l00076"></a>00076   TidyMarkup,          <span class="comment">/**&lt; Markup options: (X)HTML version, etc */</span>
-<a name="l00077"></a>00077   TidyDiagnostics,     <span class="comment">/**&lt; Diagnostics */</span>
-<a name="l00078"></a>00078   TidyPrettyPrint,     <span class="comment">/**&lt; Output layout */</span>
-<a name="l00079"></a>00079   TidyEncoding,        <span class="comment">/**&lt; Character encodings */</span>
-<a name="l00080"></a>00080   TidyMiscellaneous    <span class="comment">/**&lt; File handling, message format, etc. */</span>
-<a name="l00081"></a>00081 } TidyConfigCategory;
-<a name="l00082"></a>00082 
-<a name="l00083"></a>00083 <span class="comment"></span>
-<a name="l00084"></a>00084 <span class="comment">/** Option IDs Used to get/set option values.</span>
-<a name="l00085"></a>00085 <span class="comment">*/</span>
-<a name="l00086"></a>00086 <span class="keyword">typedef</span> <span class="keyword">enum</span>
-<a name="l00087"></a>00087 {
-<a name="l00088"></a>00088   TidyUnknownOption,   <span class="comment">/**&lt; Unknown option! */</span>
-<a name="l00089"></a>00089   TidyIndentSpaces,    <span class="comment">/**&lt; Indentation n spaces */</span>
-<a name="l00090"></a>00090   TidyWrapLen,         <span class="comment">/**&lt; Wrap margin */</span>
-<a name="l00091"></a>00091   TidyTabSize,         <span class="comment">/**&lt; Expand tabs to n spaces */</span>
-<a name="l00092"></a>00092 
-<a name="l00093"></a>00093   TidyCharEncoding,    <span class="comment">/**&lt; In/out character encoding */</span>
-<a name="l00094"></a>00094   TidyInCharEncoding,  <span class="comment">/**&lt; Input character encoding (if different) */</span>
-<a name="l00095"></a>00095   TidyOutCharEncoding, <span class="comment">/**&lt; Output character encoding (if different) */</span>    
-<a name="l00096"></a>00096   TidyNewline,         <span class="comment">/**&lt; Output line ending (default to platform) */</span>
-<a name="l00097"></a>00097 
-<a name="l00098"></a>00098   TidyDoctypeMode,     <span class="comment">/**&lt; See doctype property */</span>
-<a name="l00099"></a>00099   TidyDoctype,         <span class="comment">/**&lt; User specified doctype */</span>
-<a name="l00100"></a>00100 
-<a name="l00101"></a>00101   TidyDuplicateAttrs,  <span class="comment">/**&lt; Keep first or last duplicate attribute */</span>
-<a name="l00102"></a>00102   TidyAltText,         <span class="comment">/**&lt; Default text for alt attribute */</span>
-<a name="l00103"></a>00103   
-<a name="l00104"></a>00104   <span class="comment">/* obsolete */</span>
-<a name="l00105"></a>00105   TidySlideStyle,      <span class="comment">/**&lt; Style sheet for slides: not used for anything yet */</span>
-<a name="l00106"></a>00106 
-<a name="l00107"></a>00107   TidyErrFile,         <span class="comment">/**&lt; File name to write errors to */</span>
-<a name="l00108"></a>00108   TidyOutFile,         <span class="comment">/**&lt; File name to write markup to */</span>
-<a name="l00109"></a>00109   TidyWriteBack,       <span class="comment">/**&lt; If true then output tidied markup */</span>
-<a name="l00110"></a>00110   TidyShowMarkup,      <span class="comment">/**&lt; If false, normal output is suppressed */</span>
-<a name="l00111"></a>00111   TidyShowInfo,        <span class="comment">/**&lt; If true, info-level messages are shown */</span>
-<a name="l00112"></a>00112   TidyShowWarnings,    <span class="comment">/**&lt; However errors are always shown */</span>
-<a name="l00113"></a>00113   TidyQuiet,           <span class="comment">/**&lt; No &#39;Parsing X&#39;, guessed DTD or summary */</span>
-<a name="l00114"></a>00114   TidyIndentContent,   <span class="comment">/**&lt; Indent content of appropriate tags */</span><span class="comment"></span>
-<a name="l00115"></a>00115 <span class="comment">                       /**&lt; &quot;auto&quot; does text/block level content indentation */</span>
-<a name="l00116"></a>00116   TidyCoerceEndTags,   <span class="comment">/**&lt; Coerce end tags from start tags where probably intended */</span>
-<a name="l00117"></a>00117   TidyOmitOptionalTags,<span class="comment">/**&lt; Suppress optional start tags and end tags */</span>
-<a name="l00118"></a>00118   TidyHideEndTags,     <span class="comment">/**&lt; Legacy name for TidyOmitOptionalTags */</span>
-<a name="l00119"></a>00119   TidyXmlTags,         <span class="comment">/**&lt; Treat input as XML */</span>
-<a name="l00120"></a>00120   TidyXmlOut,          <span class="comment">/**&lt; Create output as XML */</span>
-<a name="l00121"></a>00121   TidyXhtmlOut,        <span class="comment">/**&lt; Output extensible HTML */</span>
-<a name="l00122"></a>00122   TidyHtmlOut,         <span class="comment">/**&lt; Output plain HTML, even for XHTML input.</span>
-<a name="l00123"></a>00123 <span class="comment">                           Yes means set explicitly. */</span>
-<a name="l00124"></a>00124   TidyXmlDecl,         <span class="comment">/**&lt; Add &lt;?xml?&gt; for XML docs */</span>
-<a name="l00125"></a>00125   TidyUpperCaseTags,   <span class="comment">/**&lt; Output tags in upper not lower case */</span>
-<a name="l00126"></a>00126   TidyUpperCaseAttrs,  <span class="comment">/**&lt; Output attributes in upper not lower case */</span>
-<a name="l00127"></a>00127   TidyMakeBare,        <span class="comment">/**&lt; Make bare HTML: remove Microsoft cruft */</span>
-<a name="l00128"></a>00128   TidyMakeClean,       <span class="comment">/**&lt; Replace presentational clutter by style rules */</span>
-<a name="l00129"></a>00129   TidyGDocClean,       <span class="comment">/**&lt; Clean up HTML exported from Google Docs */</span>
-<a name="l00130"></a>00130   TidyLogicalEmphasis, <span class="comment">/**&lt; Replace i by em and b by strong */</span>
-<a name="l00131"></a>00131   TidyDropPropAttrs,   <span class="comment">/**&lt; Discard proprietary attributes */</span>
-<a name="l00132"></a>00132   TidyDropFontTags,    <span class="comment">/**&lt; Discard presentation tags */</span>
-<a name="l00133"></a>00133   TidyDropEmptyElems,  <span class="comment">/**&lt; Discard empty elements */</span>
-<a name="l00134"></a>00134   TidyDropEmptyParas,  <span class="comment">/**&lt; Discard empty p elements */</span>
-<a name="l00135"></a>00135   TidyFixComments,     <span class="comment">/**&lt; Fix comments with adjacent hyphens */</span>
-<a name="l00136"></a>00136   TidyBreakBeforeBR,   <span class="comment">/**&lt; Output newline before &lt;br&gt; or not? */</span>
-<a name="l00137"></a>00137 
-<a name="l00138"></a>00138   <span class="comment">/* obsolete */</span>
-<a name="l00139"></a>00139   TidyBurstSlides,     <span class="comment">/**&lt; Create slides on each h2 element */</span>
-<a name="l00140"></a>00140 
-<a name="l00141"></a>00141   TidyNumEntities,     <span class="comment">/**&lt; Use numeric entities */</span>
-<a name="l00142"></a>00142   TidyQuoteMarks,      <span class="comment">/**&lt; Output &quot; marks as &amp;quot; */</span>
-<a name="l00143"></a>00143   TidyQuoteNbsp,       <span class="comment">/**&lt; Output non-breaking space as entity */</span>
-<a name="l00144"></a>00144   TidyQuoteAmpersand,  <span class="comment">/**&lt; Output naked ampersand as &amp;amp; */</span>
-<a name="l00145"></a>00145   TidyWrapAttVals,     <span class="comment">/**&lt; Wrap within attribute values */</span>
-<a name="l00146"></a>00146   TidyWrapScriptlets,  <span class="comment">/**&lt; Wrap within JavaScript string literals */</span>
-<a name="l00147"></a>00147   TidyWrapSection,     <span class="comment">/**&lt; Wrap within &lt;![ ... ]&gt; section tags */</span>
-<a name="l00148"></a>00148   TidyWrapAsp,         <span class="comment">/**&lt; Wrap within ASP pseudo elements */</span>
-<a name="l00149"></a>00149   TidyWrapJste,        <span class="comment">/**&lt; Wrap within JSTE pseudo elements */</span>
-<a name="l00150"></a>00150   TidyWrapPhp,         <span class="comment">/**&lt; Wrap within PHP pseudo elements */</span>
-<a name="l00151"></a>00151   TidyFixBackslash,    <span class="comment">/**&lt; Fix URLs by replacing \ with / */</span>
-<a name="l00152"></a>00152   TidyIndentAttributes,<span class="comment">/**&lt; Newline+indent before each attribute */</span>
-<a name="l00153"></a>00153   TidyXmlPIs,          <span class="comment">/**&lt; If set to yes PIs must end with ?&gt; */</span>
-<a name="l00154"></a>00154   TidyXmlSpace,        <span class="comment">/**&lt; If set to yes adds xml:space attr as needed */</span>
-<a name="l00155"></a>00155   TidyEncloseBodyText, <span class="comment">/**&lt; If yes text at body is wrapped in P&#39;s */</span>
-<a name="l00156"></a>00156   TidyEncloseBlockText,<span class="comment">/**&lt; If yes text in blocks is wrapped in P&#39;s */</span>
-<a name="l00157"></a>00157   TidyKeepFileTimes,   <span class="comment">/**&lt; If yes last modied time is preserved */</span>
-<a name="l00158"></a>00158   TidyWord2000,        <span class="comment">/**&lt; Draconian cleaning for Word2000 */</span>
-<a name="l00159"></a>00159   TidyMark,            <span class="comment">/**&lt; Add meta element indicating tidied doc */</span>
-<a name="l00160"></a>00160   TidyEmacs,           <span class="comment">/**&lt; If true format error output for GNU Emacs */</span>
-<a name="l00161"></a>00161   TidyEmacsFile,       <span class="comment">/**&lt; Name of current Emacs file */</span>
-<a name="l00162"></a>00162   TidyLiteralAttribs,  <span class="comment">/**&lt; If true attributes may use newlines */</span>
-<a name="l00163"></a>00163   TidyBodyOnly,        <span class="comment">/**&lt; Output BODY content only */</span>
-<a name="l00164"></a>00164   TidyFixUri,          <span class="comment">/**&lt; Applies URI encoding if necessary */</span>
-<a name="l00165"></a>00165   TidyLowerLiterals,   <span class="comment">/**&lt; Folds known attribute values to lower case */</span>
-<a name="l00166"></a>00166   TidyHideComments,    <span class="comment">/**&lt; Hides all (real) comments in output */</span>
-<a name="l00167"></a>00167   TidyIndentCdata,     <span class="comment">/**&lt; Indent &lt;!CDATA[ ... ]]&gt; section */</span>
-<a name="l00168"></a>00168   TidyForceOutput,     <span class="comment">/**&lt; Output document even if errors were found */</span>
-<a name="l00169"></a>00169   TidyShowErrors,      <span class="comment">/**&lt; Number of errors to put out */</span>
-<a name="l00170"></a>00170   TidyAsciiChars,      <span class="comment">/**&lt; Convert quotes and dashes to nearest ASCII char */</span>
-<a name="l00171"></a>00171   TidyJoinClasses,     <span class="comment">/**&lt; Join multiple class attributes */</span>
-<a name="l00172"></a>00172   TidyJoinStyles,      <span class="comment">/**&lt; Join multiple style attributes */</span>
-<a name="l00173"></a>00173   TidyEscapeCdata,     <span class="comment">/**&lt; Replace &lt;![CDATA[]]&gt; sections with escaped text */</span>
-<a name="l00174"></a>00174 
-<a name="l00175"></a>00175 <span class="preprocessor">#if SUPPORT_ASIAN_ENCODINGS</span>
-<a name="l00176"></a>00176 <span class="preprocessor"></span>  TidyLanguage,        <span class="comment">/**&lt; Language property: not used for anything yet */</span>
-<a name="l00177"></a>00177   TidyNCR,             <span class="comment">/**&lt; Allow numeric character references */</span>
-<a name="l00178"></a>00178 <span class="preprocessor">#else</span>
-<a name="l00179"></a>00179 <span class="preprocessor"></span>  TidyLanguageNotUsed,
-<a name="l00180"></a>00180   TidyNCRNotUsed,
-<a name="l00181"></a>00181 <span class="preprocessor">#endif</span>
-<a name="l00182"></a>00182 <span class="preprocessor"></span><span class="preprocessor">#if SUPPORT_UTF16_ENCODINGS</span>
-<a name="l00183"></a>00183 <span class="preprocessor"></span>  TidyOutputBOM,      <span class="comment">/**&lt; Output a Byte Order Mark (BOM) for UTF-16 encodings */</span><span class="comment"></span>
-<a name="l00184"></a>00184 <span class="comment">                      /**&lt; auto: if input stream has BOM, we output a BOM */</span>
-<a name="l00185"></a>00185 <span class="preprocessor">#else</span>
-<a name="l00186"></a>00186 <span class="preprocessor"></span>  TidyOutputBOMNotUsed,
-<a name="l00187"></a>00187 <span class="preprocessor">#endif</span>
-<a name="l00188"></a>00188 <span class="preprocessor"></span>
-<a name="l00189"></a>00189   TidyReplaceColor,    <span class="comment">/**&lt; Replace hex color attribute values with names */</span>
-<a name="l00190"></a>00190   TidyCSSPrefix,       <span class="comment">/**&lt; CSS class naming for -clean option */</span>
-<a name="l00191"></a>00191 
-<a name="l00192"></a>00192   TidyInlineTags,      <span class="comment">/**&lt; Declared inline tags */</span>
-<a name="l00193"></a>00193   TidyBlockTags,       <span class="comment">/**&lt; Declared block tags */</span>
-<a name="l00194"></a>00194   TidyEmptyTags,       <span class="comment">/**&lt; Declared empty tags */</span>
-<a name="l00195"></a>00195   TidyPreTags,         <span class="comment">/**&lt; Declared pre tags */</span>
-<a name="l00196"></a>00196 
-<a name="l00197"></a>00197   TidyAccessibilityCheckLevel, <span class="comment">/**&lt; Accessibility check level </span>
-<a name="l00198"></a>00198 <span class="comment">                                   0 (old style), or 1, 2, 3 */</span>
-<a name="l00199"></a>00199 
-<a name="l00200"></a>00200   TidyVertSpace,       <span class="comment">/**&lt; degree to which markup is spread out vertically */</span>
-<a name="l00201"></a>00201 <span class="preprocessor">#if SUPPORT_ASIAN_ENCODINGS</span>
-<a name="l00202"></a>00202 <span class="preprocessor"></span>  TidyPunctWrap,       <span class="comment">/**&lt; consider punctuation and breaking spaces for wrapping */</span>
-<a name="l00203"></a>00203 <span class="preprocessor">#else</span>
-<a name="l00204"></a>00204 <span class="preprocessor"></span>  TidyPunctWrapNotUsed,
-<a name="l00205"></a>00205 <span class="preprocessor">#endif</span>
-<a name="l00206"></a>00206 <span class="preprocessor"></span>  TidyMergeEmphasis,       <span class="comment">/**&lt; Merge nested B and I elements */</span>
-<a name="l00207"></a>00207   TidyMergeDivs,       <span class="comment">/**&lt; Merge multiple DIVs */</span>
-<a name="l00208"></a>00208   TidyDecorateInferredUL,  <span class="comment">/**&lt; Mark inferred UL elements with no indent CSS */</span>
-<a name="l00209"></a>00209   TidyPreserveEntities,    <span class="comment">/**&lt; Preserve entities */</span>
-<a name="l00210"></a>00210   TidySortAttributes,      <span class="comment">/**&lt; Sort attributes */</span>
-<a name="l00211"></a>00211   TidyMergeSpans,       <span class="comment">/**&lt; Merge multiple SPANs */</span>
-<a name="l00212"></a>00212   TidyAnchorAsName,    <span class="comment">/**&lt; Define anchors as name attributes */</span>
-<a name="l00213"></a>00213   N_TIDY_OPTIONS       <span class="comment">/**&lt; Must be last */</span>
-<a name="l00214"></a>00214 } TidyOptionId;
-<a name="l00215"></a>00215 <span class="comment"></span>
-<a name="l00216"></a>00216 <span class="comment">/** Option data types</span>
-<a name="l00217"></a>00217 <span class="comment">*/</span>
-<a name="l00218"></a>00218 <span class="keyword">typedef</span> <span class="keyword">enum</span>
-<a name="l00219"></a>00219 {
-<a name="l00220"></a>00220   TidyString,          <span class="comment">/**&lt; String */</span>
-<a name="l00221"></a>00221   TidyInteger,         <span class="comment">/**&lt; Integer or enumeration */</span>
-<a name="l00222"></a>00222   TidyBoolean          <span class="comment">/**&lt; Boolean flag */</span>
-<a name="l00223"></a>00223 } TidyOptionType;
-<a name="l00224"></a>00224 
-<a name="l00225"></a>00225 <span class="comment"></span>
-<a name="l00226"></a>00226 <span class="comment">/** AutoBool values used by ParseBool, ParseTriState, ParseIndent, ParseBOM</span>
-<a name="l00227"></a>00227 <span class="comment">*/</span>
-<a name="l00228"></a>00228 <span class="keyword">typedef</span> <span class="keyword">enum</span>
-<a name="l00229"></a>00229 {
-<a name="l00230"></a>00230    TidyNoState,     <span class="comment">/**&lt; maps to &#39;no&#39; */</span>
-<a name="l00231"></a>00231    TidyYesState,    <span class="comment">/**&lt; maps to &#39;yes&#39; */</span>
-<a name="l00232"></a>00232    TidyAutoState    <span class="comment">/**&lt; Automatic */</span>
-<a name="l00233"></a>00233 } TidyTriState;
-<a name="l00234"></a>00234 <span class="comment"></span>
-<a name="l00235"></a>00235 <span class="comment">/** TidyNewline option values to control output line endings.</span>
-<a name="l00236"></a>00236 <span class="comment">*/</span>
-<a name="l00237"></a>00237 <span class="keyword">typedef</span> <span class="keyword">enum</span>
-<a name="l00238"></a>00238 {
-<a name="l00239"></a>00239     TidyLF,         <span class="comment">/**&lt; Use Unix style: LF */</span>
-<a name="l00240"></a>00240     TidyCRLF,       <span class="comment">/**&lt; Use DOS/Windows style: CR+LF */</span>
-<a name="l00241"></a>00241     TidyCR          <span class="comment">/**&lt; Use Macintosh style: CR */</span>
-<a name="l00242"></a>00242 } TidyLineEnding;
-<a name="l00243"></a>00243 
-<a name="l00244"></a>00244 <span class="comment"></span>
-<a name="l00245"></a>00245 <span class="comment">/** Mode controlling treatment of doctype</span>
-<a name="l00246"></a>00246 <span class="comment">*/</span>
-<a name="l00247"></a>00247 <span class="keyword">typedef</span> <span class="keyword">enum</span>
-<a name="l00248"></a>00248 {
-<a name="l00249"></a>00249     TidyDoctypeHtml5,   <span class="comment">/**&lt; &lt;!DOCTYPE html&gt; */</span>
-<a name="l00250"></a>00250     TidyDoctypeOmit,    <span class="comment">/**&lt; Omit DOCTYPE altogether */</span>
-<a name="l00251"></a>00251     TidyDoctypeAuto,    <span class="comment">/**&lt; Keep DOCTYPE in input.  Set version to content */</span>
-<a name="l00252"></a>00252     TidyDoctypeStrict,  <span class="comment">/**&lt; Convert document to HTML 4 strict content model */</span>
-<a name="l00253"></a>00253     TidyDoctypeLoose,   <span class="comment">/**&lt; Convert document to HTML 4 transitional</span>
-<a name="l00254"></a>00254 <span class="comment">                             content model */</span>
-<a name="l00255"></a>00255     TidyDoctypeUser     <span class="comment">/**&lt; Set DOCTYPE FPI explicitly */</span>
-<a name="l00256"></a>00256 } TidyDoctypeModes;
-<a name="l00257"></a>00257 <span class="comment"></span>
-<a name="l00258"></a>00258 <span class="comment">/** Mode controlling treatment of duplicate Attributes</span>
-<a name="l00259"></a>00259 <span class="comment">*/</span>
-<a name="l00260"></a>00260 <span class="keyword">typedef</span> <span class="keyword">enum</span>
-<a name="l00261"></a>00261 {
-<a name="l00262"></a>00262     TidyKeepFirst,
-<a name="l00263"></a>00263     TidyKeepLast
-<a name="l00264"></a>00264 } TidyDupAttrModes;
-<a name="l00265"></a>00265 <span class="comment"></span>
-<a name="l00266"></a>00266 <span class="comment">/** Mode controlling treatment of sorting attributes</span>
-<a name="l00267"></a>00267 <span class="comment">*/</span>
-<a name="l00268"></a>00268 <span class="keyword">typedef</span> <span class="keyword">enum</span>
-<a name="l00269"></a>00269 {
-<a name="l00270"></a>00270     TidySortAttrNone,
-<a name="l00271"></a>00271     TidySortAttrAlpha
-<a name="l00272"></a>00272 } TidyAttrSortStrategy;
-<a name="l00273"></a>00273 
-<a name="l00274"></a>00274 <span class="comment">/* I/O and Message handling interface</span>
-<a name="l00275"></a>00275 <span class="comment">**</span>
-<a name="l00276"></a>00276 <span class="comment">** By default, Tidy will define, create and use </span>
-<a name="l00277"></a>00277 <span class="comment">** instances of input and output handlers for </span>
-<a name="l00278"></a>00278 <span class="comment">** standard C buffered I/O (i.e. FILE* stdin,</span>
-<a name="l00279"></a>00279 <span class="comment">** FILE* stdout and FILE* stderr for content</span>
-<a name="l00280"></a>00280 <span class="comment">** input, content output and diagnostic output,</span>
-<a name="l00281"></a>00281 <span class="comment">** respectively.  A FILE* cfgFile input handler</span>
-<a name="l00282"></a>00282 <span class="comment">** will be used for config files.  Command line</span>
-<a name="l00283"></a>00283 <span class="comment">** options will just be set directly.</span>
-<a name="l00284"></a>00284 <span class="comment">*/</span>
-<a name="l00285"></a>00285 <span class="comment"></span>
-<a name="l00286"></a>00286 <span class="comment">/** Message severity level</span>
-<a name="l00287"></a>00287 <span class="comment">*/</span>
-<a name="l00288"></a>00288 <span class="keyword">typedef</span> <span class="keyword">enum</span> 
-<a name="l00289"></a>00289 {
-<a name="l00290"></a>00290   TidyInfo,             <span class="comment">/**&lt; Information about markup usage */</span>
-<a name="l00291"></a>00291   TidyWarning,          <span class="comment">/**&lt; Warning message */</span>
-<a name="l00292"></a>00292   TidyConfig,           <span class="comment">/**&lt; Configuration error */</span>
-<a name="l00293"></a>00293   TidyAccess,           <span class="comment">/**&lt; Accessibility message */</span>
-<a name="l00294"></a>00294   TidyError,            <span class="comment">/**&lt; Error message - output suppressed */</span>
-<a name="l00295"></a>00295   TidyBadDocument,      <span class="comment">/**&lt; I/O or file system error */</span>
-<a name="l00296"></a>00296   TidyFatal             <span class="comment">/**&lt; Crash! */</span>
-<a name="l00297"></a>00297 } TidyReportLevel;
-<a name="l00298"></a>00298 
-<a name="l00299"></a>00299 
-<a name="l00300"></a>00300 <span class="comment">/* Document tree traversal functions</span>
-<a name="l00301"></a>00301 <span class="comment">*/</span>
-<a name="l00302"></a>00302 <span class="comment"></span>
-<a name="l00303"></a>00303 <span class="comment">/** Node types</span>
-<a name="l00304"></a>00304 <span class="comment">*/</span>
-<a name="l00305"></a>00305 <span class="keyword">typedef</span> <span class="keyword">enum</span> 
-<a name="l00306"></a>00306 {
-<a name="l00307"></a>00307   TidyNode_Root,        <span class="comment">/**&lt; Root */</span>
-<a name="l00308"></a>00308   TidyNode_DocType,     <span class="comment">/**&lt; DOCTYPE */</span>
-<a name="l00309"></a>00309   TidyNode_Comment,     <span class="comment">/**&lt; Comment */</span>
-<a name="l00310"></a>00310   TidyNode_ProcIns,     <span class="comment">/**&lt; Processing Instruction */</span>
-<a name="l00311"></a>00311   TidyNode_Text,        <span class="comment">/**&lt; Text */</span>
-<a name="l00312"></a>00312   TidyNode_Start,       <span class="comment">/**&lt; Start Tag */</span>
-<a name="l00313"></a>00313   TidyNode_End,         <span class="comment">/**&lt; End Tag */</span>
-<a name="l00314"></a>00314   TidyNode_StartEnd,    <span class="comment">/**&lt; Start/End (empty) Tag */</span>
-<a name="l00315"></a>00315   TidyNode_CDATA,       <span class="comment">/**&lt; Unparsed Text */</span>
-<a name="l00316"></a>00316   TidyNode_Section,     <span class="comment">/**&lt; XML Section */</span>
-<a name="l00317"></a>00317   TidyNode_Asp,         <span class="comment">/**&lt; ASP Source */</span>
-<a name="l00318"></a>00318   TidyNode_Jste,        <span class="comment">/**&lt; JSTE Source */</span>
-<a name="l00319"></a>00319   TidyNode_Php,         <span class="comment">/**&lt; PHP Source */</span>
-<a name="l00320"></a>00320   TidyNode_XmlDecl      <span class="comment">/**&lt; XML Declaration */</span>
-<a name="l00321"></a>00321 } TidyNodeType;
-<a name="l00322"></a>00322 
-<a name="l00323"></a>00323 <span class="comment"></span>
-<a name="l00324"></a>00324 <span class="comment">/** Known HTML element types</span>
-<a name="l00325"></a>00325 <span class="comment">*/</span>
-<a name="l00326"></a>00326 <span class="keyword">typedef</span> <span class="keyword">enum</span>
-<a name="l00327"></a>00327 {
-<a name="l00328"></a>00328   TidyTag_UNKNOWN,  <span class="comment">/**&lt; Unknown tag! */</span>
-<a name="l00329"></a>00329   TidyTag_A,        <span class="comment">/**&lt; A */</span>
-<a name="l00330"></a>00330   TidyTag_ABBR,     <span class="comment">/**&lt; ABBR */</span>
-<a name="l00331"></a>00331   TidyTag_ACRONYM,  <span class="comment">/**&lt; ACRONYM */</span>
-<a name="l00332"></a>00332   TidyTag_ADDRESS,  <span class="comment">/**&lt; ADDRESS */</span>
-<a name="l00333"></a>00333   TidyTag_ALIGN,    <span class="comment">/**&lt; ALIGN */</span>
-<a name="l00334"></a>00334   TidyTag_APPLET,   <span class="comment">/**&lt; APPLET */</span>
-<a name="l00335"></a>00335   TidyTag_AREA,     <span class="comment">/**&lt; AREA */</span>
-<a name="l00336"></a>00336   TidyTag_B,        <span class="comment">/**&lt; B */</span>
-<a name="l00337"></a>00337   TidyTag_BASE,     <span class="comment">/**&lt; BASE */</span>
-<a name="l00338"></a>00338   TidyTag_BASEFONT, <span class="comment">/**&lt; BASEFONT */</span>
-<a name="l00339"></a>00339   TidyTag_BDO,      <span class="comment">/**&lt; BDO */</span>
-<a name="l00340"></a>00340   TidyTag_BGSOUND,  <span class="comment">/**&lt; BGSOUND */</span>
-<a name="l00341"></a>00341   TidyTag_BIG,      <span class="comment">/**&lt; BIG */</span>
-<a name="l00342"></a>00342   TidyTag_BLINK,    <span class="comment">/**&lt; BLINK */</span>
-<a name="l00343"></a>00343   TidyTag_BLOCKQUOTE,   <span class="comment">/**&lt; BLOCKQUOTE */</span>
-<a name="l00344"></a>00344   TidyTag_BODY,     <span class="comment">/**&lt; BODY */</span>
-<a name="l00345"></a>00345   TidyTag_BR,       <span class="comment">/**&lt; BR */</span>
-<a name="l00346"></a>00346   TidyTag_BUTTON,   <span class="comment">/**&lt; BUTTON */</span>
-<a name="l00347"></a>00347   TidyTag_CAPTION,  <span class="comment">/**&lt; CAPTION */</span>
-<a name="l00348"></a>00348   TidyTag_CENTER,   <span class="comment">/**&lt; CENTER */</span>
-<a name="l00349"></a>00349   TidyTag_CITE,     <span class="comment">/**&lt; CITE */</span>
-<a name="l00350"></a>00350   TidyTag_CODE,     <span class="comment">/**&lt; CODE */</span>
-<a name="l00351"></a>00351   TidyTag_COL,      <span class="comment">/**&lt; COL */</span>
-<a name="l00352"></a>00352   TidyTag_COLGROUP, <span class="comment">/**&lt; COLGROUP */</span>
-<a name="l00353"></a>00353   TidyTag_COMMENT,  <span class="comment">/**&lt; COMMENT */</span>
-<a name="l00354"></a>00354   TidyTag_DD,       <span class="comment">/**&lt; DD */</span>
-<a name="l00355"></a>00355   TidyTag_DEL,      <span class="comment">/**&lt; DEL */</span>
-<a name="l00356"></a>00356   TidyTag_DFN,      <span class="comment">/**&lt; DFN */</span>
-<a name="l00357"></a>00357   TidyTag_DIR,      <span class="comment">/**&lt; DIR */</span>
-<a name="l00358"></a>00358   TidyTag_DIV,      <span class="comment">/**&lt; DIF */</span>
-<a name="l00359"></a>00359   TidyTag_DL,       <span class="comment">/**&lt; DL */</span>
-<a name="l00360"></a>00360   TidyTag_DT,       <span class="comment">/**&lt; DT */</span>
-<a name="l00361"></a>00361   TidyTag_EM,       <span class="comment">/**&lt; EM */</span>
-<a name="l00362"></a>00362   TidyTag_EMBED,    <span class="comment">/**&lt; EMBED */</span>
-<a name="l00363"></a>00363   TidyTag_FIELDSET, <span class="comment">/**&lt; FIELDSET */</span>
-<a name="l00364"></a>00364   TidyTag_FONT,     <span class="comment">/**&lt; FONT */</span>
-<a name="l00365"></a>00365   TidyTag_FORM,     <span class="comment">/**&lt; FORM */</span>
-<a name="l00366"></a>00366   TidyTag_FRAME,    <span class="comment">/**&lt; FRAME */</span>
-<a name="l00367"></a>00367   TidyTag_FRAMESET, <span class="comment">/**&lt; FRAMESET */</span>
-<a name="l00368"></a>00368   TidyTag_H1,       <span class="comment">/**&lt; H1 */</span>
-<a name="l00369"></a>00369   TidyTag_H2,       <span class="comment">/**&lt; H2 */</span>
-<a name="l00370"></a>00370   TidyTag_H3,       <span class="comment">/**&lt; H3 */</span>
-<a name="l00371"></a>00371   TidyTag_H4,       <span class="comment">/**&lt; H4 */</span>
-<a name="l00372"></a>00372   TidyTag_H5,       <span class="comment">/**&lt; H5 */</span>
-<a name="l00373"></a>00373   TidyTag_H6,       <span class="comment">/**&lt; H6 */</span>
-<a name="l00374"></a>00374   TidyTag_HEAD,     <span class="comment">/**&lt; HEAD */</span>
-<a name="l00375"></a>00375   TidyTag_HR,       <span class="comment">/**&lt; HR */</span>
-<a name="l00376"></a>00376   TidyTag_HTML,     <span class="comment">/**&lt; HTML */</span>
-<a name="l00377"></a>00377   TidyTag_I,        <span class="comment">/**&lt; I */</span>
-<a name="l00378"></a>00378   TidyTag_IFRAME,   <span class="comment">/**&lt; IFRAME */</span>
-<a name="l00379"></a>00379   TidyTag_ILAYER,   <span class="comment">/**&lt; ILAYER */</span>
-<a name="l00380"></a>00380   TidyTag_IMG,      <span class="comment">/**&lt; IMG */</span>
-<a name="l00381"></a>00381   TidyTag_INPUT,    <span class="comment">/**&lt; INPUT */</span>
-<a name="l00382"></a>00382   TidyTag_INS,      <span class="comment">/**&lt; INS */</span>
-<a name="l00383"></a>00383   TidyTag_ISINDEX,  <span class="comment">/**&lt; ISINDEX */</span>
-<a name="l00384"></a>00384   TidyTag_KBD,      <span class="comment">/**&lt; KBD */</span>
-<a name="l00385"></a>00385   TidyTag_KEYGEN,   <span class="comment">/**&lt; KEYGEN */</span>
-<a name="l00386"></a>00386   TidyTag_LABEL,    <span class="comment">/**&lt; LABEL */</span>
-<a name="l00387"></a>00387   TidyTag_LAYER,    <span class="comment">/**&lt; LAYER */</span>
-<a name="l00388"></a>00388   TidyTag_LEGEND,   <span class="comment">/**&lt; LEGEND */</span>
-<a name="l00389"></a>00389   TidyTag_LI,       <span class="comment">/**&lt; LI */</span>
-<a name="l00390"></a>00390   TidyTag_LINK,     <span class="comment">/**&lt; LINK */</span>
-<a name="l00391"></a>00391   TidyTag_LISTING,  <span class="comment">/**&lt; LISTING */</span>
-<a name="l00392"></a>00392   TidyTag_MAP,      <span class="comment">/**&lt; MAP */</span>
-<a name="l00393"></a>00393   TidyTag_MARQUEE,  <span class="comment">/**&lt; MARQUEE */</span>
-<a name="l00394"></a>00394   TidyTag_MENU,     <span class="comment">/**&lt; MENU */</span>
-<a name="l00395"></a>00395   TidyTag_META,     <span class="comment">/**&lt; META */</span>
-<a name="l00396"></a>00396   TidyTag_MULTICOL, <span class="comment">/**&lt; MULTICOL */</span>
-<a name="l00397"></a>00397   TidyTag_NOBR,     <span class="comment">/**&lt; NOBR */</span>
-<a name="l00398"></a>00398   TidyTag_NOEMBED,  <span class="comment">/**&lt; NOEMBED */</span>
-<a name="l00399"></a>00399   TidyTag_NOFRAMES, <span class="comment">/**&lt; NOFRAMES */</span>
-<a name="l00400"></a>00400   TidyTag_NOLAYER,  <span class="comment">/**&lt; NOLAYER */</span>
-<a name="l00401"></a>00401   TidyTag_NOSAVE,   <span class="comment">/**&lt; NOSAVE */</span>
-<a name="l00402"></a>00402   TidyTag_NOSCRIPT, <span class="comment">/**&lt; NOSCRIPT */</span>
-<a name="l00403"></a>00403   TidyTag_OBJECT,   <span class="comment">/**&lt; OBJECT */</span>
-<a name="l00404"></a>00404   TidyTag_OL,       <span class="comment">/**&lt; OL */</span>
-<a name="l00405"></a>00405   TidyTag_OPTGROUP, <span class="comment">/**&lt; OPTGROUP */</span>
-<a name="l00406"></a>00406   TidyTag_OPTION,   <span class="comment">/**&lt; OPTION */</span>
-<a name="l00407"></a>00407   TidyTag_P,        <span class="comment">/**&lt; P */</span>
-<a name="l00408"></a>00408   TidyTag_PARAM,    <span class="comment">/**&lt; PARAM */</span>
-<a name="l00409"></a>00409   TidyTag_PLAINTEXT,<span class="comment">/**&lt; PLAINTEXT */</span>
-<a name="l00410"></a>00410   TidyTag_PRE,      <span class="comment">/**&lt; PRE */</span>
-<a name="l00411"></a>00411   TidyTag_Q,        <span class="comment">/**&lt; Q */</span>
-<a name="l00412"></a>00412   TidyTag_RB,       <span class="comment">/**&lt; RB */</span>
-<a name="l00413"></a>00413   TidyTag_RBC,      <span class="comment">/**&lt; RBC */</span>
-<a name="l00414"></a>00414   TidyTag_RP,       <span class="comment">/**&lt; RP */</span>
-<a name="l00415"></a>00415   TidyTag_RT,       <span class="comment">/**&lt; RT */</span>
-<a name="l00416"></a>00416   TidyTag_RTC,      <span class="comment">/**&lt; RTC */</span>
-<a name="l00417"></a>00417   TidyTag_RUBY,     <span class="comment">/**&lt; RUBY */</span>
-<a name="l00418"></a>00418   TidyTag_S,        <span class="comment">/**&lt; S */</span>
-<a name="l00419"></a>00419   TidyTag_SAMP,     <span class="comment">/**&lt; SAMP */</span>
-<a name="l00420"></a>00420   TidyTag_SCRIPT,   <span class="comment">/**&lt; SCRIPT */</span>
-<a name="l00421"></a>00421   TidyTag_SELECT,   <span class="comment">/**&lt; SELECT */</span>
-<a name="l00422"></a>00422   TidyTag_SERVER,   <span class="comment">/**&lt; SERVER */</span>
-<a name="l00423"></a>00423   TidyTag_SERVLET,  <span class="comment">/**&lt; SERVLET */</span>
-<a name="l00424"></a>00424   TidyTag_SMALL,    <span class="comment">/**&lt; SMALL */</span>
-<a name="l00425"></a>00425   TidyTag_SPACER,   <span class="comment">/**&lt; SPACER */</span>
-<a name="l00426"></a>00426   TidyTag_SPAN,     <span class="comment">/**&lt; SPAN */</span>
-<a name="l00427"></a>00427   TidyTag_STRIKE,   <span class="comment">/**&lt; STRIKE */</span>
-<a name="l00428"></a>00428   TidyTag_STRONG,   <span class="comment">/**&lt; STRONG */</span>
-<a name="l00429"></a>00429   TidyTag_STYLE,    <span class="comment">/**&lt; STYLE */</span>
-<a name="l00430"></a>00430   TidyTag_SUB,      <span class="comment">/**&lt; SUB */</span>
-<a name="l00431"></a>00431   TidyTag_SUP,      <span class="comment">/**&lt; SUP */</span>
-<a name="l00432"></a>00432   TidyTag_TABLE,    <span class="comment">/**&lt; TABLE */</span>
-<a name="l00433"></a>00433   TidyTag_TBODY,    <span class="comment">/**&lt; TBODY */</span>
-<a name="l00434"></a>00434   TidyTag_TD,       <span class="comment">/**&lt; TD */</span>
-<a name="l00435"></a>00435   TidyTag_TEXTAREA, <span class="comment">/**&lt; TEXTAREA */</span>
-<a name="l00436"></a>00436   TidyTag_TFOOT,    <span class="comment">/**&lt; TFOOT */</span>
-<a name="l00437"></a>00437   TidyTag_TH,       <span class="comment">/**&lt; TH */</span>
-<a name="l00438"></a>00438   TidyTag_THEAD,    <span class="comment">/**&lt; THEAD */</span>
-<a name="l00439"></a>00439   TidyTag_TITLE,    <span class="comment">/**&lt; TITLE */</span>
-<a name="l00440"></a>00440   TidyTag_TR,       <span class="comment">/**&lt; TR */</span>
-<a name="l00441"></a>00441   TidyTag_TT,       <span class="comment">/**&lt; TT */</span>
-<a name="l00442"></a>00442   TidyTag_U,        <span class="comment">/**&lt; U */</span>
-<a name="l00443"></a>00443   TidyTag_UL,       <span class="comment">/**&lt; UL */</span>
-<a name="l00444"></a>00444   TidyTag_VAR,      <span class="comment">/**&lt; VAR */</span>
-<a name="l00445"></a>00445   TidyTag_WBR,      <span class="comment">/**&lt; WBR */</span>
-<a name="l00446"></a>00446   TidyTag_XMP,      <span class="comment">/**&lt; XMP */</span>
-<a name="l00447"></a>00447   TidyTag_NEXTID,   <span class="comment">/**&lt; NEXTID */</span>
-<a name="l00448"></a>00448 
-<a name="l00449"></a>00449   TidyTag_ARTICLE,
-<a name="l00450"></a>00450   TidyTag_ASIDE,
-<a name="l00451"></a>00451   TidyTag_AUDIO,
-<a name="l00452"></a>00452   TidyTag_CANVAS,
-<a name="l00453"></a>00453   TidyTag_COMMAND,
-<a name="l00454"></a>00454   TidyTag_DATALIST,
-<a name="l00455"></a>00455   TidyTag_DETAILS,
-<a name="l00456"></a>00456   TidyTag_FIGCAPTION,
-<a name="l00457"></a>00457   TidyTag_FIGURE,
-<a name="l00458"></a>00458   TidyTag_FOOTER,
-<a name="l00459"></a>00459   TidyTag_HEADER,
-<a name="l00460"></a>00460   TidyTag_HGROUP,
-<a name="l00461"></a>00461   TidyTag_MARK,
-<a name="l00462"></a>00462   TidyTag_METER,
-<a name="l00463"></a>00463   TidyTag_NAV,
-<a name="l00464"></a>00464   TidyTag_OUTPUT,
-<a name="l00465"></a>00465   TidyTag_PROGRESS,
-<a name="l00466"></a>00466   TidyTag_SECTION,
-<a name="l00467"></a>00467   TidyTag_SOURCE,
-<a name="l00468"></a>00468   TidyTag_SUMMARY,
-<a name="l00469"></a>00469   TidyTag_TIME,
-<a name="l00470"></a>00470   TidyTag_TRACK,
-<a name="l00471"></a>00471   TidyTag_VIDEO,
-<a name="l00472"></a>00472 
-<a name="l00473"></a>00473   N_TIDY_TAGS       <span class="comment">/**&lt; Must be last */</span>
-<a name="l00474"></a>00474 } TidyTagId;
-<a name="l00475"></a>00475 
-<a name="l00476"></a>00476 <span class="comment">/* Attribute interrogation</span>
-<a name="l00477"></a>00477 <span class="comment">*/</span>
-<a name="l00478"></a>00478 <span class="comment"></span>
-<a name="l00479"></a>00479 <span class="comment">/** Known HTML attributes</span>
-<a name="l00480"></a>00480 <span class="comment">*/</span>
-<a name="l00481"></a>00481 <span class="keyword">typedef</span> <span class="keyword">enum</span>
-<a name="l00482"></a>00482 {
-<a name="l00483"></a>00483   TidyAttr_UNKNOWN,           <span class="comment">/**&lt; UNKNOWN= */</span>
-<a name="l00484"></a>00484   TidyAttr_ABBR,              <span class="comment">/**&lt; ABBR= */</span>
-<a name="l00485"></a>00485   TidyAttr_ACCEPT,            <span class="comment">/**&lt; ACCEPT= */</span>
-<a name="l00486"></a>00486   TidyAttr_ACCEPT_CHARSET,    <span class="comment">/**&lt; ACCEPT_CHARSET= */</span>
-<a name="l00487"></a>00487   TidyAttr_ACCESSKEY,         <span class="comment">/**&lt; ACCESSKEY= */</span>
-<a name="l00488"></a>00488   TidyAttr_ACTION,            <span class="comment">/**&lt; ACTION= */</span>
-<a name="l00489"></a>00489   TidyAttr_ADD_DATE,          <span class="comment">/**&lt; ADD_DATE= */</span>
-<a name="l00490"></a>00490   TidyAttr_ALIGN,             <span class="comment">/**&lt; ALIGN= */</span>
-<a name="l00491"></a>00491   TidyAttr_ALINK,             <span class="comment">/**&lt; ALINK= */</span>
-<a name="l00492"></a>00492   TidyAttr_ALT,               <span class="comment">/**&lt; ALT= */</span>
-<a name="l00493"></a>00493   TidyAttr_ARCHIVE,           <span class="comment">/**&lt; ARCHIVE= */</span>
-<a name="l00494"></a>00494   TidyAttr_AXIS,              <span class="comment">/**&lt; AXIS= */</span>
-<a name="l00495"></a>00495   TidyAttr_BACKGROUND,        <span class="comment">/**&lt; BACKGROUND= */</span>
-<a name="l00496"></a>00496   TidyAttr_BGCOLOR,           <span class="comment">/**&lt; BGCOLOR= */</span>
-<a name="l00497"></a>00497   TidyAttr_BGPROPERTIES,      <span class="comment">/**&lt; BGPROPERTIES= */</span>
-<a name="l00498"></a>00498   TidyAttr_BORDER,            <span class="comment">/**&lt; BORDER= */</span>
-<a name="l00499"></a>00499   TidyAttr_BORDERCOLOR,       <span class="comment">/**&lt; BORDERCOLOR= */</span>
-<a name="l00500"></a>00500   TidyAttr_BOTTOMMARGIN,      <span class="comment">/**&lt; BOTTOMMARGIN= */</span>
-<a name="l00501"></a>00501   TidyAttr_CELLPADDING,       <span class="comment">/**&lt; CELLPADDING= */</span>
-<a name="l00502"></a>00502   TidyAttr_CELLSPACING,       <span class="comment">/**&lt; CELLSPACING= */</span>
-<a name="l00503"></a>00503   TidyAttr_CHAR,              <span class="comment">/**&lt; CHAR= */</span>
-<a name="l00504"></a>00504   TidyAttr_CHAROFF,           <span class="comment">/**&lt; CHAROFF= */</span>
-<a name="l00505"></a>00505   TidyAttr_CHARSET,           <span class="comment">/**&lt; CHARSET= */</span>
-<a name="l00506"></a>00506   TidyAttr_CHECKED,           <span class="comment">/**&lt; CHECKED= */</span>
-<a name="l00507"></a>00507   TidyAttr_CITE,              <span class="comment">/**&lt; CITE= */</span>
-<a name="l00508"></a>00508   TidyAttr_CLASS,             <span class="comment">/**&lt; CLASS= */</span>
-<a name="l00509"></a>00509   TidyAttr_CLASSID,           <span class="comment">/**&lt; CLASSID= */</span>
-<a name="l00510"></a>00510   TidyAttr_CLEAR,             <span class="comment">/**&lt; CLEAR= */</span>
-<a name="l00511"></a>00511   TidyAttr_CODE,              <span class="comment">/**&lt; CODE= */</span>
-<a name="l00512"></a>00512   TidyAttr_CODEBASE,          <span class="comment">/**&lt; CODEBASE= */</span>
-<a name="l00513"></a>00513   TidyAttr_CODETYPE,          <span class="comment">/**&lt; CODETYPE= */</span>
-<a name="l00514"></a>00514   TidyAttr_COLOR,             <span class="comment">/**&lt; COLOR= */</span>
-<a name="l00515"></a>00515   TidyAttr_COLS,              <span class="comment">/**&lt; COLS= */</span>
-<a name="l00516"></a>00516   TidyAttr_COLSPAN,           <span class="comment">/**&lt; COLSPAN= */</span>
-<a name="l00517"></a>00517   TidyAttr_COMPACT,           <span class="comment">/**&lt; COMPACT= */</span>
-<a name="l00518"></a>00518   TidyAttr_CONTENT,           <span class="comment">/**&lt; CONTENT= */</span>
-<a name="l00519"></a>00519   TidyAttr_COORDS,            <span class="comment">/**&lt; COORDS= */</span>
-<a name="l00520"></a>00520   TidyAttr_DATA,              <span class="comment">/**&lt; DATA= */</span>
-<a name="l00521"></a>00521   TidyAttr_DATAFLD,           <span class="comment">/**&lt; DATAFLD= */</span>
-<a name="l00522"></a>00522   TidyAttr_DATAFORMATAS,      <span class="comment">/**&lt; DATAFORMATAS= */</span>
-<a name="l00523"></a>00523   TidyAttr_DATAPAGESIZE,      <span class="comment">/**&lt; DATAPAGESIZE= */</span>
-<a name="l00524"></a>00524   TidyAttr_DATASRC,           <span class="comment">/**&lt; DATASRC= */</span>
-<a name="l00525"></a>00525   TidyAttr_DATETIME,          <span class="comment">/**&lt; DATETIME= */</span>
-<a name="l00526"></a>00526   TidyAttr_DECLARE,           <span class="comment">/**&lt; DECLARE= */</span>
-<a name="l00527"></a>00527   TidyAttr_DEFER,             <span class="comment">/**&lt; DEFER= */</span>
-<a name="l00528"></a>00528   TidyAttr_DIR,               <span class="comment">/**&lt; DIR= */</span>
-<a name="l00529"></a>00529   TidyAttr_DISABLED,          <span class="comment">/**&lt; DISABLED= */</span>
-<a name="l00530"></a>00530   TidyAttr_ENCODING,          <span class="comment">/**&lt; ENCODING= */</span>
-<a name="l00531"></a>00531   TidyAttr_ENCTYPE,           <span class="comment">/**&lt; ENCTYPE= */</span>
-<a name="l00532"></a>00532   TidyAttr_FACE,              <span class="comment">/**&lt; FACE= */</span>
-<a name="l00533"></a>00533   TidyAttr_FOR,               <span class="comment">/**&lt; FOR= */</span>
-<a name="l00534"></a>00534   TidyAttr_FRAME,             <span class="comment">/**&lt; FRAME= */</span>
-<a name="l00535"></a>00535   TidyAttr_FRAMEBORDER,       <span class="comment">/**&lt; FRAMEBORDER= */</span>
-<a name="l00536"></a>00536   TidyAttr_FRAMESPACING,      <span class="comment">/**&lt; FRAMESPACING= */</span>
-<a name="l00537"></a>00537   TidyAttr_GRIDX,             <span class="comment">/**&lt; GRIDX= */</span>
-<a name="l00538"></a>00538   TidyAttr_GRIDY,             <span class="comment">/**&lt; GRIDY= */</span>
-<a name="l00539"></a>00539   TidyAttr_HEADERS,           <span class="comment">/**&lt; HEADERS= */</span>
-<a name="l00540"></a>00540   TidyAttr_HEIGHT,            <span class="comment">/**&lt; HEIGHT= */</span>
-<a name="l00541"></a>00541   TidyAttr_HREF,              <span class="comment">/**&lt; HREF= */</span>
-<a name="l00542"></a>00542   TidyAttr_HREFLANG,          <span class="comment">/**&lt; HREFLANG= */</span>
-<a name="l00543"></a>00543   TidyAttr_HSPACE,            <span class="comment">/**&lt; HSPACE= */</span>
-<a name="l00544"></a>00544   TidyAttr_HTTP_EQUIV,        <span class="comment">/**&lt; HTTP_EQUIV= */</span>
-<a name="l00545"></a>00545   TidyAttr_ID,                <span class="comment">/**&lt; ID= */</span>
-<a name="l00546"></a>00546   TidyAttr_ISMAP,             <span class="comment">/**&lt; ISMAP= */</span>
-<a name="l00547"></a>00547   TidyAttr_ITEMPROP,          <span class="comment">/**&lt; ITEMPROP= */</span>
-<a name="l00548"></a>00548   TidyAttr_LABEL,             <span class="comment">/**&lt; LABEL= */</span>
-<a name="l00549"></a>00549   TidyAttr_LANG,              <span class="comment">/**&lt; LANG= */</span>
-<a name="l00550"></a>00550   TidyAttr_LANGUAGE,          <span class="comment">/**&lt; LANGUAGE= */</span>
-<a name="l00551"></a>00551   TidyAttr_LAST_MODIFIED,     <span class="comment">/**&lt; LAST_MODIFIED= */</span>
-<a name="l00552"></a>00552   TidyAttr_LAST_VISIT,        <span class="comment">/**&lt; LAST_VISIT= */</span>
-<a name="l00553"></a>00553   TidyAttr_LEFTMARGIN,        <span class="comment">/**&lt; LEFTMARGIN= */</span>
-<a name="l00554"></a>00554   TidyAttr_LINK,              <span class="comment">/**&lt; LINK= */</span>
-<a name="l00555"></a>00555   TidyAttr_LONGDESC,          <span class="comment">/**&lt; LONGDESC= */</span>
-<a name="l00556"></a>00556   TidyAttr_LOWSRC,            <span class="comment">/**&lt; LOWSRC= */</span>
-<a name="l00557"></a>00557   TidyAttr_MARGINHEIGHT,      <span class="comment">/**&lt; MARGINHEIGHT= */</span>
-<a name="l00558"></a>00558   TidyAttr_MARGINWIDTH,       <span class="comment">/**&lt; MARGINWIDTH= */</span>
-<a name="l00559"></a>00559   TidyAttr_MAXLENGTH,         <span class="comment">/**&lt; MAXLENGTH= */</span>
-<a name="l00560"></a>00560   TidyAttr_MEDIA,             <span class="comment">/**&lt; MEDIA= */</span>
-<a name="l00561"></a>00561   TidyAttr_METHOD,            <span class="comment">/**&lt; METHOD= */</span>
-<a name="l00562"></a>00562   TidyAttr_MULTIPLE,          <span class="comment">/**&lt; MULTIPLE= */</span>
-<a name="l00563"></a>00563   TidyAttr_NAME,              <span class="comment">/**&lt; NAME= */</span>
-<a name="l00564"></a>00564   TidyAttr_NOHREF,            <span class="comment">/**&lt; NOHREF= */</span>
-<a name="l00565"></a>00565   TidyAttr_NORESIZE,          <span class="comment">/**&lt; NORESIZE= */</span>
-<a name="l00566"></a>00566   TidyAttr_NOSHADE,           <span class="comment">/**&lt; NOSHADE= */</span>
-<a name="l00567"></a>00567   TidyAttr_NOWRAP,            <span class="comment">/**&lt; NOWRAP= */</span>
-<a name="l00568"></a>00568   TidyAttr_OBJECT,            <span class="comment">/**&lt; OBJECT= */</span>
-<a name="l00569"></a>00569   TidyAttr_OnAFTERUPDATE,     <span class="comment">/**&lt; OnAFTERUPDATE= */</span>
-<a name="l00570"></a>00570   TidyAttr_OnBEFOREUNLOAD,    <span class="comment">/**&lt; OnBEFOREUNLOAD= */</span>
-<a name="l00571"></a>00571   TidyAttr_OnBEFOREUPDATE,    <span class="comment">/**&lt; OnBEFOREUPDATE= */</span>
-<a name="l00572"></a>00572   TidyAttr_OnBLUR,            <span class="comment">/**&lt; OnBLUR= */</span>
-<a name="l00573"></a>00573   TidyAttr_OnCHANGE,          <span class="comment">/**&lt; OnCHANGE= */</span>
-<a name="l00574"></a>00574   TidyAttr_OnCLICK,           <span class="comment">/**&lt; OnCLICK= */</span>
-<a name="l00575"></a>00575   TidyAttr_OnDATAAVAILABLE,   <span class="comment">/**&lt; OnDATAAVAILABLE= */</span>
-<a name="l00576"></a>00576   TidyAttr_OnDATASETCHANGED,  <span class="comment">/**&lt; OnDATASETCHANGED= */</span>
-<a name="l00577"></a>00577   TidyAttr_OnDATASETCOMPLETE, <span class="comment">/**&lt; OnDATASETCOMPLETE= */</span>
-<a name="l00578"></a>00578   TidyAttr_OnDBLCLICK,        <span class="comment">/**&lt; OnDBLCLICK= */</span>
-<a name="l00579"></a>00579   TidyAttr_OnERRORUPDATE,     <span class="comment">/**&lt; OnERRORUPDATE= */</span>
-<a name="l00580"></a>00580   TidyAttr_OnFOCUS,           <span class="comment">/**&lt; OnFOCUS= */</span>
-<a name="l00581"></a>00581   TidyAttr_OnKEYDOWN,         <span class="comment">/**&lt; OnKEYDOWN= */</span>
-<a name="l00582"></a>00582   TidyAttr_OnKEYPRESS,        <span class="comment">/**&lt; OnKEYPRESS= */</span>
-<a name="l00583"></a>00583   TidyAttr_OnKEYUP,           <span class="comment">/**&lt; OnKEYUP= */</span>
-<a name="l00584"></a>00584   TidyAttr_OnLOAD,            <span class="comment">/**&lt; OnLOAD= */</span>
-<a name="l00585"></a>00585   TidyAttr_OnMOUSEDOWN,       <span class="comment">/**&lt; OnMOUSEDOWN= */</span>
-<a name="l00586"></a>00586   TidyAttr_OnMOUSEMOVE,       <span class="comment">/**&lt; OnMOUSEMOVE= */</span>
-<a name="l00587"></a>00587   TidyAttr_OnMOUSEOUT,        <span class="comment">/**&lt; OnMOUSEOUT= */</span>
-<a name="l00588"></a>00588   TidyAttr_OnMOUSEOVER,       <span class="comment">/**&lt; OnMOUSEOVER= */</span>
-<a name="l00589"></a>00589   TidyAttr_OnMOUSEUP,         <span class="comment">/**&lt; OnMOUSEUP= */</span>
-<a name="l00590"></a>00590   TidyAttr_OnRESET,           <span class="comment">/**&lt; OnRESET= */</span>
-<a name="l00591"></a>00591   TidyAttr_OnROWENTER,        <span class="comment">/**&lt; OnROWENTER= */</span>
-<a name="l00592"></a>00592   TidyAttr_OnROWEXIT,         <span class="comment">/**&lt; OnROWEXIT= */</span>
-<a name="l00593"></a>00593   TidyAttr_OnSELECT,          <span class="comment">/**&lt; OnSELECT= */</span>
-<a name="l00594"></a>00594   TidyAttr_OnSUBMIT,          <span class="comment">/**&lt; OnSUBMIT= */</span>
-<a name="l00595"></a>00595   TidyAttr_OnUNLOAD,          <span class="comment">/**&lt; OnUNLOAD= */</span>
-<a name="l00596"></a>00596   TidyAttr_PROFILE,           <span class="comment">/**&lt; PROFILE= */</span>
-<a name="l00597"></a>00597   TidyAttr_PROMPT,            <span class="comment">/**&lt; PROMPT= */</span>
-<a name="l00598"></a>00598   TidyAttr_RBSPAN,            <span class="comment">/**&lt; RBSPAN= */</span>
-<a name="l00599"></a>00599   TidyAttr_READONLY,          <span class="comment">/**&lt; READONLY= */</span>
-<a name="l00600"></a>00600   TidyAttr_REL,               <span class="comment">/**&lt; REL= */</span>
-<a name="l00601"></a>00601   TidyAttr_REV,               <span class="comment">/**&lt; REV= */</span>
-<a name="l00602"></a>00602   TidyAttr_RIGHTMARGIN,       <span class="comment">/**&lt; RIGHTMARGIN= */</span>
-<a name="l00603"></a>00603   TidyAttr_ROWS,              <span class="comment">/**&lt; ROWS= */</span>
-<a name="l00604"></a>00604   TidyAttr_ROWSPAN,           <span class="comment">/**&lt; ROWSPAN= */</span>
-<a name="l00605"></a>00605   TidyAttr_RULES,             <span class="comment">/**&lt; RULES= */</span>
-<a name="l00606"></a>00606   TidyAttr_SCHEME,            <span class="comment">/**&lt; SCHEME= */</span>
-<a name="l00607"></a>00607   TidyAttr_SCOPE,             <span class="comment">/**&lt; SCOPE= */</span>
-<a name="l00608"></a>00608   TidyAttr_SCROLLING,         <span class="comment">/**&lt; SCROLLING= */</span>
-<a name="l00609"></a>00609   TidyAttr_SELECTED,          <span class="comment">/**&lt; SELECTED= */</span>
-<a name="l00610"></a>00610   TidyAttr_SHAPE,             <span class="comment">/**&lt; SHAPE= */</span>
-<a name="l00611"></a>00611   TidyAttr_SHOWGRID,          <span class="comment">/**&lt; SHOWGRID= */</span>
-<a name="l00612"></a>00612   TidyAttr_SHOWGRIDX,         <span class="comment">/**&lt; SHOWGRIDX= */</span>
-<a name="l00613"></a>00613   TidyAttr_SHOWGRIDY,         <span class="comment">/**&lt; SHOWGRIDY= */</span>
-<a name="l00614"></a>00614   TidyAttr_SIZE,              <span class="comment">/**&lt; SIZE= */</span>
-<a name="l00615"></a>00615   TidyAttr_SPAN,              <span class="comment">/**&lt; SPAN= */</span>
-<a name="l00616"></a>00616   TidyAttr_SRC,               <span class="comment">/**&lt; SRC= */</span>
-<a name="l00617"></a>00617   TidyAttr_STANDBY,           <span class="comment">/**&lt; STANDBY= */</span>
-<a name="l00618"></a>00618   TidyAttr_START,             <span class="comment">/**&lt; START= */</span>
-<a name="l00619"></a>00619   TidyAttr_STYLE,             <span class="comment">/**&lt; STYLE= */</span>
-<a name="l00620"></a>00620   TidyAttr_SUMMARY,           <span class="comment">/**&lt; SUMMARY= */</span>
-<a name="l00621"></a>00621   TidyAttr_TABINDEX,          <span class="comment">/**&lt; TABINDEX= */</span>
-<a name="l00622"></a>00622   TidyAttr_TARGET,            <span class="comment">/**&lt; TARGET= */</span>
-<a name="l00623"></a>00623   TidyAttr_TEXT,              <span class="comment">/**&lt; TEXT= */</span>
-<a name="l00624"></a>00624   TidyAttr_TITLE,             <span class="comment">/**&lt; TITLE= */</span>
-<a name="l00625"></a>00625   TidyAttr_TOPMARGIN,         <span class="comment">/**&lt; TOPMARGIN= */</span>
-<a name="l00626"></a>00626   TidyAttr_TYPE,              <span class="comment">/**&lt; TYPE= */</span>
-<a name="l00627"></a>00627   TidyAttr_USEMAP,            <span class="comment">/**&lt; USEMAP= */</span>
-<a name="l00628"></a>00628   TidyAttr_VALIGN,            <span class="comment">/**&lt; VALIGN= */</span>
-<a name="l00629"></a>00629   TidyAttr_VALUE,             <span class="comment">/**&lt; VALUE= */</span>
-<a name="l00630"></a>00630   TidyAttr_VALUETYPE,         <span class="comment">/**&lt; VALUETYPE= */</span>
-<a name="l00631"></a>00631   TidyAttr_VERSION,           <span class="comment">/**&lt; VERSION= */</span>
-<a name="l00632"></a>00632   TidyAttr_VLINK,             <span class="comment">/**&lt; VLINK= */</span>
-<a name="l00633"></a>00633   TidyAttr_VSPACE,            <span class="comment">/**&lt; VSPACE= */</span>
-<a name="l00634"></a>00634   TidyAttr_WIDTH,             <span class="comment">/**&lt; WIDTH= */</span>
-<a name="l00635"></a>00635   TidyAttr_WRAP,              <span class="comment">/**&lt; WRAP= */</span>
-<a name="l00636"></a>00636   TidyAttr_XML_LANG,          <span class="comment">/**&lt; XML_LANG= */</span>
-<a name="l00637"></a>00637   TidyAttr_XML_SPACE,         <span class="comment">/**&lt; XML_SPACE= */</span>
-<a name="l00638"></a>00638   TidyAttr_XMLNS,             <span class="comment">/**&lt; XMLNS= */</span>
-<a name="l00639"></a>00639 
-<a name="l00640"></a>00640   TidyAttr_EVENT,             <span class="comment">/**&lt; EVENT= */</span>
-<a name="l00641"></a>00641   TidyAttr_METHODS,           <span class="comment">/**&lt; METHODS= */</span>
-<a name="l00642"></a>00642   TidyAttr_N,                 <span class="comment">/**&lt; N= */</span>
-<a name="l00643"></a>00643   TidyAttr_SDAFORM,           <span class="comment">/**&lt; SDAFORM= */</span>
-<a name="l00644"></a>00644   TidyAttr_SDAPREF,           <span class="comment">/**&lt; SDAPREF= */</span>
-<a name="l00645"></a>00645   TidyAttr_SDASUFF,           <span class="comment">/**&lt; SDASUFF= */</span>
-<a name="l00646"></a>00646   TidyAttr_URN,               <span class="comment">/**&lt; URN= */</span>
-<a name="l00647"></a>00647 
-<a name="l00648"></a>00648   TidyAttr_ASYNC,
-<a name="l00649"></a>00649   TidyAttr_AUTOCOMPLETE,
-<a name="l00650"></a>00650   TidyAttr_AUTOFOCUS,
-<a name="l00651"></a>00651   TidyAttr_AUTOPLAY,
-<a name="l00652"></a>00652   TidyAttr_CHALLENGE,
-<a name="l00653"></a>00653   TidyAttr_CONTENTEDITABLE,
-<a name="l00654"></a>00654   TidyAttr_CONTEXTMENU,
-<a name="l00655"></a>00655   TidyAttr_CONTROLS,
-<a name="l00656"></a>00656   TidyAttr_DEFAULT,
-<a name="l00657"></a>00657   TidyAttr_DIRNAME,
-<a name="l00658"></a>00658   TidyAttr_DRAGGABLE,
-<a name="l00659"></a>00659   TidyAttr_DROPZONE,
-<a name="l00660"></a>00660   TidyAttr_FORM,
-<a name="l00661"></a>00661   TidyAttr_FORMACTION,
-<a name="l00662"></a>00662   TidyAttr_FORMENCTYPE,
-<a name="l00663"></a>00663   TidyAttr_FORMMETHOD,
-<a name="l00664"></a>00664   TidyAttr_FORMNOVALIDATE,
-<a name="l00665"></a>00665   TidyAttr_FORMTARGET,
-<a name="l00666"></a>00666   TidyAttr_HIDDEN,
-<a name="l00667"></a>00667   TidyAttr_HIGH,
-<a name="l00668"></a>00668   TidyAttr_ICON,
-<a name="l00669"></a>00669   TidyAttr_KEYTYPE,
-<a name="l00670"></a>00670   TidyAttr_KIND,
-<a name="l00671"></a>00671   TidyAttr_LIST,
-<a name="l00672"></a>00672   TidyAttr_LOOP,
-<a name="l00673"></a>00673   TidyAttr_LOW,
-<a name="l00674"></a>00674   TidyAttr_MANIFEST,
-<a name="l00675"></a>00675   TidyAttr_MAX,
-<a name="l00676"></a>00676   TidyAttr_MEDIAGROUP,
-<a name="l00677"></a>00677   TidyAttr_MIN,
-<a name="l00678"></a>00678   TidyAttr_NOVALIDATE,
-<a name="l00679"></a>00679   TidyAttr_OPEN,
-<a name="l00680"></a>00680   TidyAttr_OPTIMUM,
-<a name="l00681"></a>00681   TidyAttr_OnABORT,
-<a name="l00682"></a>00682   TidyAttr_OnAFTERPRINT,
-<a name="l00683"></a>00683   TidyAttr_OnBEFOREPRINT,
-<a name="l00684"></a>00684   TidyAttr_OnCANPLAY,
-<a name="l00685"></a>00685   TidyAttr_OnCANPLAYTHROUGH,
-<a name="l00686"></a>00686   TidyAttr_OnCONTEXTMENU,
-<a name="l00687"></a>00687   TidyAttr_OnCUECHANGE,
-<a name="l00688"></a>00688   TidyAttr_OnDRAG,
-<a name="l00689"></a>00689   TidyAttr_OnDRAGEND,
-<a name="l00690"></a>00690   TidyAttr_OnDRAGENTER,
-<a name="l00691"></a>00691   TidyAttr_OnDRAGLEAVE,
-<a name="l00692"></a>00692   TidyAttr_OnDRAGOVER,
-<a name="l00693"></a>00693   TidyAttr_OnDRAGSTART,
-<a name="l00694"></a>00694   TidyAttr_OnDROP,
-<a name="l00695"></a>00695   TidyAttr_OnDURATIONCHANGE,
-<a name="l00696"></a>00696   TidyAttr_OnEMPTIED,
-<a name="l00697"></a>00697   TidyAttr_OnENDED,
-<a name="l00698"></a>00698   TidyAttr_OnERROR,
-<a name="l00699"></a>00699   TidyAttr_OnHASHCHANGE,
-<a name="l00700"></a>00700   TidyAttr_OnINPUT,
-<a name="l00701"></a>00701   TidyAttr_OnINVALID,
-<a name="l00702"></a>00702   TidyAttr_OnLOADEDDATA,
-<a name="l00703"></a>00703   TidyAttr_OnLOADEDMETADATA,
-<a name="l00704"></a>00704   TidyAttr_OnLOADSTART,
-<a name="l00705"></a>00705   TidyAttr_OnMESSAGE,
-<a name="l00706"></a>00706   TidyAttr_OnMOUSEWHEEL,
-<a name="l00707"></a>00707   TidyAttr_OnOFFLINE,
-<a name="l00708"></a>00708   TidyAttr_OnONLINE,
-<a name="l00709"></a>00709   TidyAttr_OnPAGEHIDE,
-<a name="l00710"></a>00710   TidyAttr_OnPAGESHOW,
-<a name="l00711"></a>00711   TidyAttr_OnPAUSE,
-<a name="l00712"></a>00712   TidyAttr_OnPLAY,
-<a name="l00713"></a>00713   TidyAttr_OnPLAYING,
-<a name="l00714"></a>00714   TidyAttr_OnPOPSTATE,
-<a name="l00715"></a>00715   TidyAttr_OnPROGRESS,
-<a name="l00716"></a>00716   TidyAttr_OnRATECHANGE,
-<a name="l00717"></a>00717   TidyAttr_OnREADYSTATECHANGE,
-<a name="l00718"></a>00718   TidyAttr_OnREDO,
-<a name="l00719"></a>00719   TidyAttr_OnRESIZE,
-<a name="l00720"></a>00720   TidyAttr_OnSCROLL,
-<a name="l00721"></a>00721   TidyAttr_OnSEEKED,
-<a name="l00722"></a>00722   TidyAttr_OnSEEKING,
-<a name="l00723"></a>00723   TidyAttr_OnSHOW,
-<a name="l00724"></a>00724   TidyAttr_OnSTALLED,
-<a name="l00725"></a>00725   TidyAttr_OnSTORAGE,
-<a name="l00726"></a>00726   TidyAttr_OnSUSPEND,
-<a name="l00727"></a>00727   TidyAttr_OnTIMEUPDATE,
-<a name="l00728"></a>00728   TidyAttr_OnUNDO,
-<a name="l00729"></a>00729   TidyAttr_OnVOLUMECHANGE,
-<a name="l00730"></a>00730   TidyAttr_OnWAITING,
-<a name="l00731"></a>00731   TidyAttr_PATTERN,
-<a name="l00732"></a>00732   TidyAttr_PLACEHOLDER,
-<a name="l00733"></a>00733   TidyAttr_POSTER,
-<a name="l00734"></a>00734   TidyAttr_PRELOAD,
-<a name="l00735"></a>00735   TidyAttr_PUBDATE,
-<a name="l00736"></a>00736   TidyAttr_RADIOGROUP,
-<a name="l00737"></a>00737   TidyAttr_REQUIRED,
-<a name="l00738"></a>00738   TidyAttr_REVERSED,
-<a name="l00739"></a>00739   TidyAttr_SANDBOX,
-<a name="l00740"></a>00740   TidyAttr_SCOPED,
-<a name="l00741"></a>00741   TidyAttr_SEAMLESS,
-<a name="l00742"></a>00742   TidyAttr_SIZES,
-<a name="l00743"></a>00743   TidyAttr_SPELLCHECK,
-<a name="l00744"></a>00744   TidyAttr_SRCDOC,
-<a name="l00745"></a>00745   TidyAttr_SRCLANG,
-<a name="l00746"></a>00746   TidyAttr_STEP,
-<a name="l00747"></a>00747 
-<a name="l00748"></a>00748 
-<a name="l00749"></a>00749   N_TIDY_ATTRIBS              <span class="comment">/**&lt; Must be last */</span>
-<a name="l00750"></a>00750 } TidyAttrId;
-<a name="l00751"></a>00751 
-<a name="l00752"></a>00752 <span class="preprocessor">#ifdef __cplusplus</span>
-<a name="l00753"></a>00753 <span class="preprocessor"></span>}  <span class="comment">/* extern &quot;C&quot; */</span>
-<a name="l00754"></a>00754 <span class="preprocessor">#endif</span>
-<a name="l00755"></a>00755 <span class="preprocessor"></span><span class="preprocessor">#endif </span><span class="comment">/* __TIDYENUM_H__ */</span>
-</pre></div></div><!-- contents -->
-</div>
-  <div id="nav-path" class="navpath">
-    <ul>
-      <li class="navelem"><b>tidyenum.h</b>      </li>
-
-    <li class="footer">Generated on Wed Jun 20 2012 16:58:07 for HTML Tidy by
-    <a href="http://www.doxygen.org/index.html">
-    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.0 </li>
-   </ul>
- </div>
-
-
-</body>
-</html>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/doxygen.cfg b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/doxygen.cfg
deleted file mode 100644
index c2692ff..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/doxygen.cfg
+++ /dev/null
@@ -1,1757 +0,0 @@
-# Doxyfile 1.7.5.1
-
-# This file describes the settings to be used by the documentation system
-# doxygen (www.doxygen.org) for a project.
-#
-# All text after a hash (#) is considered a comment and will be ignored.
-# The format is:
-#       TAG = value [value, ...]
-# For lists items can also be appended using:
-#       TAG += value [value, ...]
-# Values that contain spaces should be placed between quotes (" ").
-
-#---------------------------------------------------------------------------
-# Project related configuration options
-#---------------------------------------------------------------------------
-
-# This tag specifies the encoding used for all characters in the config file
-# that follow. The default is UTF-8 which is also the encoding used for all
-# text before the first occurrence of this tag. Doxygen uses libiconv (or the
-# iconv built into libc) for the transcoding. See
-# http://www.gnu.org/software/libiconv for the list of possible encodings.
-
-DOXYFILE_ENCODING      = UTF-8
-
-# The PROJECT_NAME tag is a single word (or sequence of words) that should
-# identify the project. Note that if you do not use Doxywizard you need
-# to put quotes around the project name if it contains spaces.
-
-PROJECT_NAME           = "HTML Tidy"
-
-# The PROJECT_NUMBER tag can be used to enter a project or revision number.
-# This could be handy for archiving the generated documentation or
-# if some version control system is used.
-
-PROJECT_NUMBER         = 0.1
-
-# Using the PROJECT_BRIEF tag one can provide an optional one line description
-# for a project that appears at the top of each page and should give viewer
-# a quick idea about the purpose of the project. Keep the description short.
-
-PROJECT_BRIEF          =
-
-# With the PROJECT_LOGO tag one can specify an logo or icon that is
-# included in the documentation. The maximum height of the logo should not
-# exceed 55 pixels and the maximum width should not exceed 200 pixels.
-# Doxygen will copy the logo to the output directory.
-
-PROJECT_LOGO           =
-
-# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
-# base path where the generated documentation will be put.
-# If a relative path is entered, it will be relative to the location
-# where doxygen was started. If left blank the current directory will be used.
-
-OUTPUT_DIRECTORY       = htmldoc
-
-# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
-# 4096 sub-directories (in 2 levels) under the output directory of each output
-# format and will distribute the generated files over these directories.
-# Enabling this option can be useful when feeding doxygen a huge amount of
-# source files, where putting all generated files in the same directory would
-# otherwise cause performance problems for the file system.
-
-CREATE_SUBDIRS         = NO
-
-# The OUTPUT_LANGUAGE tag is used to specify the language in which all
-# documentation generated by doxygen is written. Doxygen will use this
-# information to generate all constant output in the proper language.
-# The default language is English, other supported languages are:
-# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
-# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,
-# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English
-# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,
-# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak,
-# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.
-
-OUTPUT_LANGUAGE        = English
-
-# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
-# include brief member descriptions after the members that are listed in
-# the file and class documentation (similar to JavaDoc).
-# Set to NO to disable this.
-
-BRIEF_MEMBER_DESC      = YES
-
-# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
-# the brief description of a member or function before the detailed description.
-# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
-# brief descriptions will be completely suppressed.
-
-REPEAT_BRIEF           = NO
-
-# This tag implements a quasi-intelligent brief description abbreviator
-# that is used to form the text in various listings. Each string
-# in this list, if found as the leading text of the brief description, will be
-# stripped from the text and the result after processing the whole list, is
-# used as the annotated text. Otherwise, the brief description is used as-is.
-# If left blank, the following values are used ("$name" is automatically
-# replaced with the name of the entity): "The $name class" "The $name widget"
-# "The $name file" "is" "provides" "specifies" "contains"
-# "represents" "a" "an" "the"
-
-ABBREVIATE_BRIEF       =
-
-# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
-# Doxygen will generate a detailed section even if there is only a brief
-# description.
-
-ALWAYS_DETAILED_SEC    = NO
-
-# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
-# inherited members of a class in the documentation of that class as if those
-# members were ordinary class members. Constructors, destructors and assignment
-# operators of the base classes will not be shown.
-
-INLINE_INHERITED_MEMB  = NO
-
-# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
-# path before files name in the file list and in the header files. If set
-# to NO the shortest path that makes the file name unique will be used.
-
-FULL_PATH_NAMES        = NO
-
-# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
-# can be used to strip a user-defined part of the path. Stripping is
-# only done if one of the specified strings matches the left-hand part of
-# the path. The tag can be used to show relative paths in the file list.
-# If left blank the directory from which doxygen is run is used as the
-# path to strip.
-
-STRIP_FROM_PATH        =
-
-# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
-# the path mentioned in the documentation of a class, which tells
-# the reader which header file to include in order to use a class.
-# If left blank only the name of the header file containing the class
-# definition is used. Otherwise one should specify the include paths that
-# are normally passed to the compiler using the -I flag.
-
-STRIP_FROM_INC_PATH    =
-
-# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
-# (but less readable) file names. This can be useful if your file system
-# doesn't support long names like on DOS, Mac, or CD-ROM.
-
-SHORT_NAMES            = NO
-
-# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
-# will interpret the first line (until the first dot) of a JavaDoc-style
-# comment as the brief description. If set to NO, the JavaDoc
-# comments will behave just like regular Qt-style comments
-# (thus requiring an explicit @brief command for a brief description.)
-
-JAVADOC_AUTOBRIEF      = NO
-
-# If the QT_AUTOBRIEF tag is set to YES then Doxygen will
-# interpret the first line (until the first dot) of a Qt-style
-# comment as the brief description. If set to NO, the comments
-# will behave just like regular Qt-style comments (thus requiring
-# an explicit \brief command for a brief description.)
-
-QT_AUTOBRIEF           = NO
-
-# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
-# treat a multi-line C++ special comment block (i.e. a block of //! or ///
-# comments) as a brief description. This used to be the default behaviour.
-# The new default is to treat a multi-line C++ comment block as a detailed
-# description. Set this tag to YES if you prefer the old behaviour instead.
-
-MULTILINE_CPP_IS_BRIEF = NO
-
-# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
-# member inherits the documentation from any documented member that it
-# re-implements.
-
-INHERIT_DOCS           = YES
-
-# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
-# a new page for each member. If set to NO, the documentation of a member will
-# be part of the file/class/namespace that contains it.
-
-SEPARATE_MEMBER_PAGES  = NO
-
-# The TAB_SIZE tag can be used to set the number of spaces in a tab.
-# Doxygen uses this value to replace tabs by spaces in code fragments.
-
-TAB_SIZE               = 8
-
-# This tag can be used to specify a number of aliases that acts
-# as commands in the documentation. An alias has the form "name=value".
-# For example adding "sideeffect=\par Side Effects:\n" will allow you to
-# put the command \sideeffect (or @sideeffect) in the documentation, which
-# will result in a user-defined paragraph with heading "Side Effects:".
-# You can put \n's in the value part of an alias to insert newlines.
-
-ALIASES                =
-
-# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
-# sources only. Doxygen will then generate output that is more tailored for C.
-# For instance, some of the names that are used will be different. The list
-# of all members will be omitted, etc.
-
-OPTIMIZE_OUTPUT_FOR_C  = YES
-
-# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
-# sources only. Doxygen will then generate output that is more tailored for
-# Java. For instance, namespaces will be presented as packages, qualified
-# scopes will look different, etc.
-
-OPTIMIZE_OUTPUT_JAVA   = NO
-
-# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
-# sources only. Doxygen will then generate output that is more tailored for
-# Fortran.
-
-OPTIMIZE_FOR_FORTRAN   = NO
-
-# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
-# sources. Doxygen will then generate output that is tailored for
-# VHDL.
-
-OPTIMIZE_OUTPUT_VHDL   = NO
-
-# Doxygen selects the parser to use depending on the extension of the files it
-# parses. With this tag you can assign which parser to use for a given extension.
-# Doxygen has a built-in mapping, but you can override or extend it using this
-# tag. The format is ext=language, where ext is a file extension, and language
-# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C,
-# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make
-# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
-# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions
-# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen.
-
-EXTENSION_MAPPING      =
-
-# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
-# to include (a tag file for) the STL sources as input, then you should
-# set this tag to YES in order to let doxygen match functions declarations and
-# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
-# func(std::string) {}). This also makes the inheritance and collaboration
-# diagrams that involve STL classes more complete and accurate.
-
-BUILTIN_STL_SUPPORT    = NO
-
-# If you use Microsoft's C++/CLI language, you should set this option to YES to
-# enable parsing support.
-
-CPP_CLI_SUPPORT        = NO
-
-# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
-# Doxygen will parse them like normal C++ but will assume all classes use public
-# instead of private inheritance when no explicit protection keyword is present.
-
-SIP_SUPPORT            = NO
-
-# For Microsoft's IDL there are propget and propput attributes to indicate getter
-# and setter methods for a property. Setting this option to YES (the default)
-# will make doxygen replace the get and set methods by a property in the
-# documentation. This will only work if the methods are indeed getting or
-# setting a simple type. If this is not the case, or you want to show the
-# methods anyway, you should set this option to NO.
-
-IDL_PROPERTY_SUPPORT   = YES
-
-# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
-# tag is set to YES, then doxygen will reuse the documentation of the first
-# member in the group (if any) for the other members of the group. By default
-# all members of a group must be documented explicitly.
-
-DISTRIBUTE_GROUP_DOC   = NO
-
-# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
-# the same type (for instance a group of public functions) to be put as a
-# subgroup of that type (e.g. under the Public Functions section). Set it to
-# NO to prevent subgrouping. Alternatively, this can be done per class using
-# the \nosubgrouping command.
-
-SUBGROUPING            = YES
-
-# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and
-# unions are shown inside the group in which they are included (e.g. using
-# @ingroup) instead of on a separate page (for HTML and Man pages) or
-# section (for LaTeX and RTF).
-
-INLINE_GROUPED_CLASSES = NO
-
-# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and
-# unions with only public data fields will be shown inline in the documentation
-# of the scope in which they are defined (i.e. file, namespace, or group
-# documentation), provided this scope is documented. If set to NO (the default),
-# structs, classes, and unions are shown on a separate page (for HTML and Man
-# pages) or section (for LaTeX and RTF).
-
-INLINE_SIMPLE_STRUCTS  = NO
-
-# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
-# is documented as struct, union, or enum with the name of the typedef. So
-# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
-# with name TypeT. When disabled the typedef will appear as a member of a file,
-# namespace, or class. And the struct will be named TypeS. This can typically
-# be useful for C code in case the coding convention dictates that all compound
-# types are typedef'ed and only the typedef is referenced, never the tag name.
-
-TYPEDEF_HIDES_STRUCT   = NO
-
-# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to
-# determine which symbols to keep in memory and which to flush to disk.
-# When the cache is full, less often used symbols will be written to disk.
-# For small to medium size projects (<1000 input files) the default value is
-# probably good enough. For larger projects a too small cache size can cause
-# doxygen to be busy swapping symbols to and from disk most of the time
-# causing a significant performance penalty.
-# If the system has enough physical memory increasing the cache will improve the
-# performance by keeping more symbols in memory. Note that the value works on
-# a logarithmic scale so increasing the size by one will roughly double the
-# memory usage. The cache size is given by this formula:
-# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
-# corresponding to a cache size of 2^16 = 65536 symbols
-
-SYMBOL_CACHE_SIZE      = 0
-
-#---------------------------------------------------------------------------
-# Build related configuration options
-#---------------------------------------------------------------------------
-
-# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
-# documentation are documented, even if no documentation was available.
-# Private class members and static file members will be hidden unless
-# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
-
-EXTRACT_ALL            = NO
-
-# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
-# will be included in the documentation.
-
-EXTRACT_PRIVATE        = NO
-
-# If the EXTRACT_STATIC tag is set to YES all static members of a file
-# will be included in the documentation.
-
-EXTRACT_STATIC         = NO
-
-# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
-# defined locally in source files will be included in the documentation.
-# If set to NO only classes defined in header files are included.
-
-EXTRACT_LOCAL_CLASSES  = YES
-
-# This flag is only useful for Objective-C code. When set to YES local
-# methods, which are defined in the implementation section but not in
-# the interface are included in the documentation.
-# If set to NO (the default) only methods in the interface are included.
-
-EXTRACT_LOCAL_METHODS  = NO
-
-# If this flag is set to YES, the members of anonymous namespaces will be
-# extracted and appear in the documentation as a namespace called
-# 'anonymous_namespace{file}', where file will be replaced with the base
-# name of the file that contains the anonymous namespace. By default
-# anonymous namespaces are hidden.
-
-EXTRACT_ANON_NSPACES   = NO
-
-# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
-# undocumented members of documented classes, files or namespaces.
-# If set to NO (the default) these members will be included in the
-# various overviews, but no documentation section is generated.
-# This option has no effect if EXTRACT_ALL is enabled.
-
-HIDE_UNDOC_MEMBERS     = NO
-
-# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
-# undocumented classes that are normally visible in the class hierarchy.
-# If set to NO (the default) these classes will be included in the various
-# overviews. This option has no effect if EXTRACT_ALL is enabled.
-
-HIDE_UNDOC_CLASSES     = NO
-
-# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
-# friend (class|struct|union) declarations.
-# If set to NO (the default) these declarations will be included in the
-# documentation.
-
-HIDE_FRIEND_COMPOUNDS  = NO
-
-# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
-# documentation blocks found inside the body of a function.
-# If set to NO (the default) these blocks will be appended to the
-# function's detailed documentation block.
-
-HIDE_IN_BODY_DOCS      = NO
-
-# The INTERNAL_DOCS tag determines if documentation
-# that is typed after a \internal command is included. If the tag is set
-# to NO (the default) then the documentation will be excluded.
-# Set it to YES to include the internal documentation.
-
-INTERNAL_DOCS          = NO
-
-# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
-# file names in lower-case letters. If set to YES upper-case letters are also
-# allowed. This is useful if you have classes or files whose names only differ
-# in case and if your file system supports case sensitive file names. Windows
-# and Mac users are advised to set this option to NO.
-
-CASE_SENSE_NAMES       = YES
-
-# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
-# will show members with their full class and namespace scopes in the
-# documentation. If set to YES the scope will be hidden.
-
-HIDE_SCOPE_NAMES       = NO
-
-# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
-# will put a list of the files that are included by a file in the documentation
-# of that file.
-
-SHOW_INCLUDE_FILES     = YES
-
-# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen
-# will list include files with double quotes in the documentation
-# rather than with sharp brackets.
-
-FORCE_LOCAL_INCLUDES   = NO
-
-# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
-# is inserted in the documentation for inline members.
-
-INLINE_INFO            = YES
-
-# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
-# will sort the (detailed) documentation of file and class members
-# alphabetically by member name. If set to NO the members will appear in
-# declaration order.
-
-SORT_MEMBER_DOCS       = NO
-
-# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
-# brief documentation of file, namespace and class members alphabetically
-# by member name. If set to NO (the default) the members will appear in
-# declaration order.
-
-SORT_BRIEF_DOCS        = NO
-
-# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen
-# will sort the (brief and detailed) documentation of class members so that
-# constructors and destructors are listed first. If set to NO (the default)
-# the constructors will appear in the respective orders defined by
-# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS.
-# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO
-# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
-
-SORT_MEMBERS_CTORS_1ST = NO
-
-# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
-# hierarchy of group names into alphabetical order. If set to NO (the default)
-# the group names will appear in their defined order.
-
-SORT_GROUP_NAMES       = NO
-
-# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
-# sorted by fully-qualified names, including namespaces. If set to
-# NO (the default), the class list will be sorted only by class name,
-# not including the namespace part.
-# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
-# Note: This option applies only to the class list, not to the
-# alphabetical list.
-
-SORT_BY_SCOPE_NAME     = NO
-
-# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to
-# do proper type resolution of all parameters of a function it will reject a
-# match between the prototype and the implementation of a member function even
-# if there is only one candidate or it is obvious which candidate to choose
-# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen
-# will still accept a match between prototype and implementation in such cases.
-
-STRICT_PROTO_MATCHING  = NO
-
-# The GENERATE_TODOLIST tag can be used to enable (YES) or
-# disable (NO) the todo list. This list is created by putting \todo
-# commands in the documentation.
-
-GENERATE_TODOLIST      = YES
-
-# The GENERATE_TESTLIST tag can be used to enable (YES) or
-# disable (NO) the test list. This list is created by putting \test
-# commands in the documentation.
-
-GENERATE_TESTLIST      = YES
-
-# The GENERATE_BUGLIST tag can be used to enable (YES) or
-# disable (NO) the bug list. This list is created by putting \bug
-# commands in the documentation.
-
-GENERATE_BUGLIST       = YES
-
-# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
-# disable (NO) the deprecated list. This list is created by putting
-# \deprecated commands in the documentation.
-
-GENERATE_DEPRECATEDLIST= YES
-
-# The ENABLED_SECTIONS tag can be used to enable conditional
-# documentation sections, marked by \if sectionname ... \endif.
-
-ENABLED_SECTIONS       =
-
-# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
-# the initial value of a variable or macro consists of for it to appear in
-# the documentation. If the initializer consists of more lines than specified
-# here it will be hidden. Use a value of 0 to hide initializers completely.
-# The appearance of the initializer of individual variables and macros in the
-# documentation can be controlled using \showinitializer or \hideinitializer
-# command in the documentation regardless of this setting.
-
-MAX_INITIALIZER_LINES  = 30
-
-# Set the SHOW_USED_FILES tag to NO to disable the list of files generated
-# at the bottom of the documentation of classes and structs. If set to YES the
-# list will mention the files that were used to generate the documentation.
-
-SHOW_USED_FILES        = YES
-
-# If the sources in your project are distributed over multiple directories
-# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
-# in the documentation. The default is NO.
-
-SHOW_DIRECTORIES       = NO
-
-# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
-# This will remove the Files entry from the Quick Index and from the
-# Folder Tree View (if specified). The default is YES.
-
-SHOW_FILES             = YES
-
-# Set the SHOW_NAMESPACES tag to NO to disable the generation of the
-# Namespaces page.
-# This will remove the Namespaces entry from the Quick Index
-# and from the Folder Tree View (if specified). The default is YES.
-
-SHOW_NAMESPACES        = YES
-
-# The FILE_VERSION_FILTER tag can be used to specify a program or script that
-# doxygen should invoke to get the current version for each file (typically from
-# the version control system). Doxygen will invoke the program by executing (via
-# popen()) the command <command> <input-file>, where <command> is the value of
-# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
-# provided by doxygen. Whatever the program writes to standard output
-# is used as the file version. See the manual for examples.
-
-FILE_VERSION_FILTER    =
-
-# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
-# by doxygen. The layout file controls the global structure of the generated
-# output files in an output format independent way. The create the layout file
-# that represents doxygen's defaults, run doxygen with the -l option.
-# You can optionally specify a file name after the option, if omitted
-# DoxygenLayout.xml will be used as the name of the layout file.
-
-LAYOUT_FILE            =
-
-# The CITE_BIB_FILES tag can be used to specify one or more bib files
-# containing the references data. This must be a list of .bib files. The
-# .bib extension is automatically appended if omitted. Using this command
-# requires the bibtex tool to be installed. See also
-# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style
-# of the bibliography can be controlled using LATEX_BIB_STYLE.
-
-CITE_BIB_FILES         =
-
-#---------------------------------------------------------------------------
-# configuration options related to warning and progress messages
-#---------------------------------------------------------------------------
-
-# The QUIET tag can be used to turn on/off the messages that are generated
-# by doxygen. Possible values are YES and NO. If left blank NO is used.
-
-QUIET                  = NO
-
-# The WARNINGS tag can be used to turn on/off the warning messages that are
-# generated by doxygen. Possible values are YES and NO. If left blank
-# NO is used.
-
-WARNINGS               = YES
-
-# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
-# for undocumented members. If EXTRACT_ALL is set to YES then this flag will
-# automatically be disabled.
-
-WARN_IF_UNDOCUMENTED   = NO
-
-# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
-# potential errors in the documentation, such as not documenting some
-# parameters in a documented function, or documenting parameters that
-# don't exist or using markup commands wrongly.
-
-WARN_IF_DOC_ERROR      = YES
-
-# The WARN_NO_PARAMDOC option can be enabled to get warnings for
-# functions that are documented, but have no documentation for their parameters
-# or return value. If set to NO (the default) doxygen will only warn about
-# wrong or incomplete parameter documentation, but not about the absence of
-# documentation.
-
-WARN_NO_PARAMDOC       = NO
-
-# The WARN_FORMAT tag determines the format of the warning messages that
-# doxygen can produce. The string should contain the $file, $line, and $text
-# tags, which will be replaced by the file and line number from which the
-# warning originated and the warning text. Optionally the format may contain
-# $version, which will be replaced by the version of the file (if it could
-# be obtained via FILE_VERSION_FILTER)
-
-WARN_FORMAT            = "$file:$line: $text"
-
-# The WARN_LOGFILE tag can be used to specify a file to which warning
-# and error messages should be written. If left blank the output is written
-# to stderr.
-
-WARN_LOGFILE           =
-
-#---------------------------------------------------------------------------
-# configuration options related to the input files
-#---------------------------------------------------------------------------
-
-# The INPUT tag can be used to specify the files and/or directories that contain
-# documented source files. You may enter file names like "myfile.cpp" or
-# directories like "/usr/src/myproject". Separate the files or directories
-# with spaces.
-
-INPUT                  = include
-
-# This tag can be used to specify the character encoding of the source files
-# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
-# also the default input encoding. Doxygen uses libiconv (or the iconv built
-# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for
-# the list of possible encodings.
-
-INPUT_ENCODING         = UTF-8
-
-# If the value of the INPUT tag contains directories, you can use the
-# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
-# and *.h) to filter out the source-files in the directories. If left
-# blank the following patterns are tested:
-# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh
-# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py
-# *.f90 *.f *.for *.vhd *.vhdl
-
-FILE_PATTERNS          =
-
-# The RECURSIVE tag can be used to turn specify whether or not subdirectories
-# should be searched for input files as well. Possible values are YES and NO.
-# If left blank NO is used.
-
-RECURSIVE              = NO
-
-# The EXCLUDE tag can be used to specify files and/or directories that should
-# excluded from the INPUT source files. This way you can easily exclude a
-# subdirectory from a directory tree whose root is specified with the INPUT tag.
-# Note that relative paths are relative to directory from which doxygen is run.
-
-EXCLUDE                = include\platform.h
-
-# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
-# directories that are symbolic links (a Unix file system feature) are excluded
-# from the input.
-
-EXCLUDE_SYMLINKS       = NO
-
-# If the value of the INPUT tag contains directories, you can use the
-# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
-# certain files from those directories. Note that the wildcards are matched
-# against the file with absolute path, so to exclude all test directories
-# for example use the pattern */test/*
-
-EXCLUDE_PATTERNS       =
-
-# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
-# (namespaces, classes, functions, etc.) that should be excluded from the
-# output. The symbol name can be a fully qualified name, a word, or if the
-# wildcard * is used, a substring. Examples: ANamespace, AClass,
-# AClass::ANamespace, ANamespace::*Test
-
-EXCLUDE_SYMBOLS        =
-
-# The EXAMPLE_PATH tag can be used to specify one or more files or
-# directories that contain example code fragments that are included (see
-# the \include command).
-
-EXAMPLE_PATH           =
-
-# If the value of the EXAMPLE_PATH tag contains directories, you can use the
-# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
-# and *.h) to filter out the source-files in the directories. If left
-# blank all files are included.
-
-EXAMPLE_PATTERNS       =
-
-# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
-# searched for input files to be used with the \include or \dontinclude
-# commands irrespective of the value of the RECURSIVE tag.
-# Possible values are YES and NO. If left blank NO is used.
-
-EXAMPLE_RECURSIVE      = NO
-
-# The IMAGE_PATH tag can be used to specify one or more files or
-# directories that contain image that are included in the documentation (see
-# the \image command).
-
-IMAGE_PATH             =
-
-# The INPUT_FILTER tag can be used to specify a program that doxygen should
-# invoke to filter for each input file. Doxygen will invoke the filter program
-# by executing (via popen()) the command <filter> <input-file>, where <filter>
-# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
-# input file. Doxygen will then use the output that the filter program writes
-# to standard output.
-# If FILTER_PATTERNS is specified, this tag will be
-# ignored.
-
-INPUT_FILTER           =
-
-# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
-# basis.
-# Doxygen will compare the file name with each pattern and apply the
-# filter if there is a match.
-# The filters are a list of the form:
-# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
-# info on how filters are used. If FILTER_PATTERNS is empty or if
-# non of the patterns match the file name, INPUT_FILTER is applied.
-
-FILTER_PATTERNS        =
-
-# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
-# INPUT_FILTER) will be used to filter the input files when producing source
-# files to browse (i.e. when SOURCE_BROWSER is set to YES).
-
-FILTER_SOURCE_FILES    = NO
-
-# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
-# pattern. A pattern will override the setting for FILTER_PATTERN (if any)
-# and it is also possible to disable source filtering for a specific pattern
-# using *.ext= (so without naming a filter). This option only has effect when
-# FILTER_SOURCE_FILES is enabled.
-
-FILTER_SOURCE_PATTERNS =
-
-#---------------------------------------------------------------------------
-# configuration options related to source browsing
-#---------------------------------------------------------------------------
-
-# If the SOURCE_BROWSER tag is set to YES then a list of source files will
-# be generated. Documented entities will be cross-referenced with these sources.
-# Note: To get rid of all source code in the generated output, make sure also
-# VERBATIM_HEADERS is set to NO.
-
-SOURCE_BROWSER         = NO
-
-# Setting the INLINE_SOURCES tag to YES will include the body
-# of functions and classes directly in the documentation.
-
-INLINE_SOURCES         = NO
-
-# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
-# doxygen to hide any special comment blocks from generated source code
-# fragments. Normal C and C++ comments will always remain visible.
-
-STRIP_CODE_COMMENTS    = NO
-
-# If the REFERENCED_BY_RELATION tag is set to YES
-# then for each documented function all documented
-# functions referencing it will be listed.
-
-REFERENCED_BY_RELATION = YES
-
-# If the REFERENCES_RELATION tag is set to YES
-# then for each documented function all documented entities
-# called/used by that function will be listed.
-
-REFERENCES_RELATION    = YES
-
-# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
-# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
-# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
-# link to the source code.
-# Otherwise they will link to the documentation.
-
-REFERENCES_LINK_SOURCE = YES
-
-# If the USE_HTAGS tag is set to YES then the references to source code
-# will point to the HTML generated by the htags(1) tool instead of doxygen
-# built-in source browser. The htags tool is part of GNU's global source
-# tagging system (see http://www.gnu.org/software/global/global.html). You
-# will need version 4.8.6 or higher.
-
-USE_HTAGS              = NO
-
-# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
-# will generate a verbatim copy of the header file for each class for
-# which an include is specified. Set to NO to disable this.
-
-VERBATIM_HEADERS       = YES
-
-#---------------------------------------------------------------------------
-# configuration options related to the alphabetical class index
-#---------------------------------------------------------------------------
-
-# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
-# of all compounds will be generated. Enable this if the project
-# contains a lot of classes, structs, unions or interfaces.
-
-ALPHABETICAL_INDEX     = NO
-
-# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
-# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
-# in which this list will be split (can be a number in the range [1..20])
-
-COLS_IN_ALPHA_INDEX    = 5
-
-# In case all classes in a project start with a common prefix, all
-# classes will be put under the same header in the alphabetical index.
-# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
-# should be ignored while generating the index headers.
-
-IGNORE_PREFIX          =
-
-#---------------------------------------------------------------------------
-# configuration options related to the HTML output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
-# generate HTML output.
-
-GENERATE_HTML          = YES
-
-# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `html' will be used as the default path.
-
-HTML_OUTPUT            = api
-
-# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
-# each generated HTML page (for example: .htm,.php,.asp). If it is left blank
-# doxygen will generate files with .html extension.
-
-HTML_FILE_EXTENSION    = .html
-
-# The HTML_HEADER tag can be used to specify a personal HTML header for
-# each generated HTML page. If it is left blank doxygen will generate a
-# standard header. Note that when using a custom header you are responsible
-#  for the proper inclusion of any scripts and style sheets that doxygen
-# needs, which is dependent on the configuration options used.
-# It is adviced to generate a default header using "doxygen -w html
-# header.html footer.html stylesheet.css YourConfigFile" and then modify
-# that header. Note that the header is subject to change so you typically
-# have to redo this when upgrading to a newer version of doxygen or when
-# changing the value of configuration settings such as GENERATE_TREEVIEW!
-
-HTML_HEADER            =
-
-# The HTML_FOOTER tag can be used to specify a personal HTML footer for
-# each generated HTML page. If it is left blank doxygen will generate a
-# standard footer.
-
-HTML_FOOTER            =
-
-# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
-# style sheet that is used by each HTML page. It can be used to
-# fine-tune the look of the HTML output. If the tag is left blank doxygen
-# will generate a default style sheet. Note that doxygen will try to copy
-# the style sheet file to the HTML output directory, so don't put your own
-# stylesheet in the HTML output directory as well, or it will be erased!
-
-HTML_STYLESHEET        =
-
-# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
-# other source files which should be copied to the HTML output directory. Note
-# that these files will be copied to the base HTML output directory. Use the
-# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
-# files. In the HTML_STYLESHEET file, use the file name only. Also note that
-# the files will be copied as-is; there are no commands or markers available.
-
-HTML_EXTRA_FILES       =
-
-# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output.
-# Doxygen will adjust the colors in the stylesheet and background images
-# according to this color. Hue is specified as an angle on a colorwheel,
-# see http://en.wikipedia.org/wiki/Hue for more information.
-# For instance the value 0 represents red, 60 is yellow, 120 is green,
-# 180 is cyan, 240 is blue, 300 purple, and 360 is red again.
-# The allowed range is 0 to 359.
-
-HTML_COLORSTYLE_HUE    = 220
-
-# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of
-# the colors in the HTML output. For a value of 0 the output will use
-# grayscales only. A value of 255 will produce the most vivid colors.
-
-HTML_COLORSTYLE_SAT    = 100
-
-# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to
-# the luminance component of the colors in the HTML output. Values below
-# 100 gradually make the output lighter, whereas values above 100 make
-# the output darker. The value divided by 100 is the actual gamma applied,
-# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2,
-# and 100 does not change the gamma.
-
-HTML_COLORSTYLE_GAMMA  = 80
-
-# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
-# page will contain the date and time when the page was generated. Setting
-# this to NO can help when comparing the output of multiple runs.
-
-HTML_TIMESTAMP         = YES
-
-# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
-# files or namespaces will be aligned in HTML using tables. If set to
-# NO a bullet list will be used.
-
-HTML_ALIGN_MEMBERS     = YES
-
-# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
-# documentation will contain sections that can be hidden and shown after the
-# page has loaded. For this to work a browser that supports
-# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
-# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
-
-HTML_DYNAMIC_SECTIONS  = NO
-
-# If the GENERATE_DOCSET tag is set to YES, additional index files
-# will be generated that can be used as input for Apple's Xcode 3
-# integrated development environment, introduced with OSX 10.5 (Leopard).
-# To create a documentation set, doxygen will generate a Makefile in the
-# HTML output directory. Running make will produce the docset in that
-# directory and running "make install" will install the docset in
-# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find
-# it at startup.
-# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
-# for more information.
-
-GENERATE_DOCSET        = NO
-
-# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the
-# feed. A documentation feed provides an umbrella under which multiple
-# documentation sets from a single provider (such as a company or product suite)
-# can be grouped.
-
-DOCSET_FEEDNAME        = "Doxygen generated docs"
-
-# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that
-# should uniquely identify the documentation set bundle. This should be a
-# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
-# will append .docset to the name.
-
-DOCSET_BUNDLE_ID       = org.doxygen.Project
-
-# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify
-# the documentation publisher. This should be a reverse domain-name style
-# string, e.g. com.mycompany.MyDocSet.documentation.
-
-DOCSET_PUBLISHER_ID    = org.doxygen.Publisher
-
-# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher.
-
-DOCSET_PUBLISHER_NAME  = Publisher
-
-# If the GENERATE_HTMLHELP tag is set to YES, additional index files
-# will be generated that can be used as input for tools like the
-# Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
-# of the generated HTML documentation.
-
-GENERATE_HTMLHELP      = NO
-
-# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
-# be used to specify the file name of the resulting .chm file. You
-# can add a path in front of the file if the result should not be
-# written to the html output directory.
-
-CHM_FILE               =
-
-# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
-# be used to specify the location (absolute path including file name) of
-# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
-# the HTML help compiler on the generated index.hhp.
-
-HHC_LOCATION           =
-
-# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
-# controls if a separate .chi index file is generated (YES) or that
-# it should be included in the master .chm file (NO).
-
-GENERATE_CHI           = NO
-
-# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING
-# is used to encode HtmlHelp index (hhk), content (hhc) and project file
-# content.
-
-CHM_INDEX_ENCODING     =
-
-# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
-# controls whether a binary table of contents is generated (YES) or a
-# normal table of contents (NO) in the .chm file.
-
-BINARY_TOC             = NO
-
-# The TOC_EXPAND flag can be set to YES to add extra items for group members
-# to the contents of the HTML help documentation and to the tree view.
-
-TOC_EXPAND             = NO
-
-# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
-# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated
-# that can be used as input for Qt's qhelpgenerator to generate a
-# Qt Compressed Help (.qch) of the generated HTML documentation.
-
-GENERATE_QHP           = NO
-
-# If the QHG_LOCATION tag is specified, the QCH_FILE tag can
-# be used to specify the file name of the resulting .qch file.
-# The path specified is relative to the HTML output folder.
-
-QCH_FILE               =
-
-# The QHP_NAMESPACE tag specifies the namespace to use when generating
-# Qt Help Project output. For more information please see
-# http://doc.trolltech.com/qthelpproject.html#namespace
-
-QHP_NAMESPACE          = org.doxygen.Project
-
-# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
-# Qt Help Project output. For more information please see
-# http://doc.trolltech.com/qthelpproject.html#virtual-folders
-
-QHP_VIRTUAL_FOLDER     = doc
-
-# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to
-# add. For more information please see
-# http://doc.trolltech.com/qthelpproject.html#custom-filters
-
-QHP_CUST_FILTER_NAME   =
-
-# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the
-# custom filter to add. For more information please see
-# <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters">
-# Qt Help Project / Custom Filters</a>.
-
-QHP_CUST_FILTER_ATTRS  =
-
-# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
-# project's
-# filter section matches.
-# <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes">
-# Qt Help Project / Filter Attributes</a>.
-
-QHP_SECT_FILTER_ATTRS  =
-
-# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can
-# be used to specify the location of Qt's qhelpgenerator.
-# If non-empty doxygen will try to run qhelpgenerator on the generated
-# .qhp file.
-
-QHG_LOCATION           =
-
-# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files
-#  will be generated, which together with the HTML files, form an Eclipse help
-# plugin. To install this plugin and make it available under the help contents
-# menu in Eclipse, the contents of the directory containing the HTML and XML
-# files needs to be copied into the plugins directory of eclipse. The name of
-# the directory within the plugins directory should be the same as
-# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before
-# the help appears.
-
-GENERATE_ECLIPSEHELP   = NO
-
-# A unique identifier for the eclipse help plugin. When installing the plugin
-# the directory name containing the HTML and XML files should also have
-# this name.
-
-ECLIPSE_DOC_ID         = org.doxygen.Project
-
-# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
-# top of each HTML page. The value NO (the default) enables the index and
-# the value YES disables it.
-
-DISABLE_INDEX          = YES
-
-# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values
-# (range [0,1..20]) that doxygen will group on one line in the generated HTML
-# documentation. Note that a value of 0 will completely suppress the enum
-# values from appearing in the overview section.
-
-ENUM_VALUES_PER_LINE   = 1
-
-# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
-# structure should be generated to display hierarchical information.
-# If the tag value is set to YES, a side panel will be generated
-# containing a tree-like index structure (just like the one that
-# is generated for HTML Help). For this to work a browser that supports
-# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).
-# Windows users are probably better off using the HTML help feature.
-
-GENERATE_TREEVIEW      = YES
-
-# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
-# and Class Hierarchy pages using a tree view instead of an ordered list.
-
-USE_INLINE_TREES       = NO
-
-# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
-# used to set the initial width (in pixels) of the frame in which the tree
-# is shown.
-
-TREEVIEW_WIDTH         = 250
-
-# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open
-# links to external symbols imported via tag files in a separate window.
-
-EXT_LINKS_IN_WINDOW    = NO
-
-# Use this tag to change the font size of Latex formulas included
-# as images in the HTML documentation. The default is 10. Note that
-# when you change the font size after a successful doxygen run you need
-# to manually remove any form_*.png images from the HTML output directory
-# to force them to be regenerated.
-
-FORMULA_FONTSIZE       = 10
-
-# Use the FORMULA_TRANPARENT tag to determine whether or not the images
-# generated for formulas are transparent PNGs. Transparent PNGs are
-# not supported properly for IE 6.0, but are supported on all modern browsers.
-# Note that when changing this option you need to delete any form_*.png files
-# in the HTML output before the changes have effect.
-
-FORMULA_TRANSPARENT    = YES
-
-# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax
-# (see http://www.mathjax.org) which uses client side Javascript for the
-# rendering instead of using prerendered bitmaps. Use this if you do not
-# have LaTeX installed or if you want to formulas look prettier in the HTML
-# output. When enabled you also need to install MathJax separately and
-# configure the path to it using the MATHJAX_RELPATH option.
-
-USE_MATHJAX            = NO
-
-# When MathJax is enabled you need to specify the location relative to the
-# HTML output directory using the MATHJAX_RELPATH option. The destination
-# directory should contain the MathJax.js script. For instance, if the mathjax
-# directory is located at the same level as the HTML output directory, then
-# MATHJAX_RELPATH should be ../mathjax. The default value points to the
-# mathjax.org site, so you can quickly see the result without installing
-# MathJax, but it is strongly recommended to install a local copy of MathJax
-# before deployment.
-
-MATHJAX_RELPATH        = http://www.mathjax.org/mathjax
-
-# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension
-# names that should be enabled during MathJax rendering.
-
-MATHJAX_EXTENSIONS     =
-
-# When the SEARCHENGINE tag is enabled doxygen will generate a search box
-# for the HTML output. The underlying search engine uses javascript
-# and DHTML and should work on any modern browser. Note that when using
-# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets
-# (GENERATE_DOCSET) there is already a search function so this one should
-# typically be disabled. For large projects the javascript based search engine
-# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.
-
-SEARCHENGINE           = NO
-
-# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
-# implemented using a PHP enabled web server instead of at the web client
-# using Javascript. Doxygen will generate the search PHP script and index
-# file to put on the web server. The advantage of the server
-# based approach is that it scales better to large projects and allows
-# full text search. The disadvantages are that it is more difficult to setup
-# and does not have live searching capabilities.
-
-SERVER_BASED_SEARCH    = NO
-
-#---------------------------------------------------------------------------
-# configuration options related to the LaTeX output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
-# generate Latex output.
-
-GENERATE_LATEX         = NO
-
-# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `latex' will be used as the default path.
-
-LATEX_OUTPUT           = latex
-
-# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
-# invoked. If left blank `latex' will be used as the default command name.
-# Note that when enabling USE_PDFLATEX this option is only used for
-# generating bitmaps for formulas in the HTML output, but not in the
-# Makefile that is written to the output directory.
-
-LATEX_CMD_NAME         = latex
-
-# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
-# generate index for LaTeX. If left blank `makeindex' will be used as the
-# default command name.
-
-MAKEINDEX_CMD_NAME     = makeindex
-
-# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
-# LaTeX documents. This may be useful for small projects and may help to
-# save some trees in general.
-
-COMPACT_LATEX          = NO
-
-# The PAPER_TYPE tag can be used to set the paper type that is used
-# by the printer. Possible values are: a4, letter, legal and
-# executive. If left blank a4wide will be used.
-
-PAPER_TYPE             = a4wide
-
-# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
-# packages that should be included in the LaTeX output.
-
-EXTRA_PACKAGES         =
-
-# The LATEX_HEADER tag can be used to specify a personal LaTeX header for
-# the generated latex document. The header should contain everything until
-# the first chapter. If it is left blank doxygen will generate a
-# standard header. Notice: only use this tag if you know what you are doing!
-
-LATEX_HEADER           =
-
-# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for
-# the generated latex document. The footer should contain everything after
-# the last chapter. If it is left blank doxygen will generate a
-# standard footer. Notice: only use this tag if you know what you are doing!
-
-LATEX_FOOTER           =
-
-# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
-# is prepared for conversion to pdf (using ps2pdf). The pdf file will
-# contain links (just like the HTML output) instead of page references
-# This makes the output suitable for online browsing using a pdf viewer.
-
-PDF_HYPERLINKS         = NO
-
-# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
-# plain latex in the generated Makefile. Set this option to YES to get a
-# higher quality PDF documentation.
-
-USE_PDFLATEX           = NO
-
-# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
-# command to the generated LaTeX files. This will instruct LaTeX to keep
-# running if errors occur, instead of asking the user for help.
-# This option is also used when generating formulas in HTML.
-
-LATEX_BATCHMODE        = NO
-
-# If LATEX_HIDE_INDICES is set to YES then doxygen will not
-# include the index chapters (such as File Index, Compound Index, etc.)
-# in the output.
-
-LATEX_HIDE_INDICES     = NO
-
-# If LATEX_SOURCE_CODE is set to YES then doxygen will include
-# source code with syntax highlighting in the LaTeX output.
-# Note that which sources are shown also depends on other settings
-# such as SOURCE_BROWSER.
-
-LATEX_SOURCE_CODE      = NO
-
-# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
-# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See
-# http://en.wikipedia.org/wiki/BibTeX for more info.
-
-LATEX_BIB_STYLE        = plain
-
-#---------------------------------------------------------------------------
-# configuration options related to the RTF output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
-# The RTF output is optimized for Word 97 and may not look very pretty with
-# other RTF readers or editors.
-
-GENERATE_RTF           = NO
-
-# The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `rtf' will be used as the default path.
-
-RTF_OUTPUT             = rtf
-
-# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
-# RTF documents. This may be useful for small projects and may help to
-# save some trees in general.
-
-COMPACT_RTF            = NO
-
-# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
-# will contain hyperlink fields. The RTF file will
-# contain links (just like the HTML output) instead of page references.
-# This makes the output suitable for online browsing using WORD or other
-# programs which support those fields.
-# Note: wordpad (write) and others do not support links.
-
-RTF_HYPERLINKS         = NO
-
-# Load stylesheet definitions from file. Syntax is similar to doxygen's
-# config file, i.e. a series of assignments. You only have to provide
-# replacements, missing definitions are set to their default value.
-
-RTF_STYLESHEET_FILE    =
-
-# Set optional variables used in the generation of an rtf document.
-# Syntax is similar to doxygen's config file.
-
-RTF_EXTENSIONS_FILE    =
-
-#---------------------------------------------------------------------------
-# configuration options related to the man page output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
-# generate man pages
-
-GENERATE_MAN           = NO
-
-# The MAN_OUTPUT tag is used to specify where the man pages will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `man' will be used as the default path.
-
-MAN_OUTPUT             = man
-
-# The MAN_EXTENSION tag determines the extension that is added to
-# the generated man pages (default is the subroutine's section .3)
-
-MAN_EXTENSION          = .3
-
-# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
-# then it will generate one additional man file for each entity
-# documented in the real man page(s). These additional files
-# only source the real man page, but without them the man command
-# would be unable to find the correct page. The default is NO.
-
-MAN_LINKS              = NO
-
-#---------------------------------------------------------------------------
-# configuration options related to the XML output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_XML tag is set to YES Doxygen will
-# generate an XML file that captures the structure of
-# the code including all documentation.
-
-GENERATE_XML           = NO
-
-# The XML_OUTPUT tag is used to specify where the XML pages will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `xml' will be used as the default path.
-
-XML_OUTPUT             = xml
-
-# The XML_SCHEMA tag can be used to specify an XML schema,
-# which can be used by a validating XML parser to check the
-# syntax of the XML files.
-
-XML_SCHEMA             =
-
-# The XML_DTD tag can be used to specify an XML DTD,
-# which can be used by a validating XML parser to check the
-# syntax of the XML files.
-
-XML_DTD                =
-
-# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
-# dump the program listings (including syntax highlighting
-# and cross-referencing information) to the XML output. Note that
-# enabling this will significantly increase the size of the XML output.
-
-XML_PROGRAMLISTING     = YES
-
-#---------------------------------------------------------------------------
-# configuration options for the AutoGen Definitions output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
-# generate an AutoGen Definitions (see autogen.sf.net) file
-# that captures the structure of the code including all
-# documentation. Note that this feature is still experimental
-# and incomplete at the moment.
-
-GENERATE_AUTOGEN_DEF   = NO
-
-#---------------------------------------------------------------------------
-# configuration options related to the Perl module output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_PERLMOD tag is set to YES Doxygen will
-# generate a Perl module file that captures the structure of
-# the code including all documentation. Note that this
-# feature is still experimental and incomplete at the
-# moment.
-
-GENERATE_PERLMOD       = NO
-
-# If the PERLMOD_LATEX tag is set to YES Doxygen will generate
-# the necessary Makefile rules, Perl scripts and LaTeX code to be able
-# to generate PDF and DVI output from the Perl module output.
-
-PERLMOD_LATEX          = NO
-
-# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
-# nicely formatted so it can be parsed by a human reader.
-# This is useful
-# if you want to understand what is going on.
-# On the other hand, if this
-# tag is set to NO the size of the Perl module output will be much smaller
-# and Perl will parse it just the same.
-
-PERLMOD_PRETTY         = YES
-
-# The names of the make variables in the generated doxyrules.make file
-# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
-# This is useful so different doxyrules.make files included by the same
-# Makefile don't overwrite each other's variables.
-
-PERLMOD_MAKEVAR_PREFIX =
-
-#---------------------------------------------------------------------------
-# Configuration options related to the preprocessor
-#---------------------------------------------------------------------------
-
-# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
-# evaluate all C-preprocessor directives found in the sources and include
-# files.
-
-ENABLE_PREPROCESSING   = YES
-
-# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
-# names in the source code. If set to NO (the default) only conditional
-# compilation will be performed. Macro expansion can be done in a controlled
-# way by setting EXPAND_ONLY_PREDEF to YES.
-
-MACRO_EXPANSION        = YES
-
-# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
-# then the macro expansion is limited to the macros specified with the
-# PREDEFINED and EXPAND_AS_DEFINED tags.
-
-EXPAND_ONLY_PREDEF     = YES
-
-# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
-# pointed to by INCLUDE_PATH will be searched when a #include is found.
-
-SEARCH_INCLUDES        = NO
-
-# The INCLUDE_PATH tag can be used to specify one or more directories that
-# contain include files that are not input files but should be processed by
-# the preprocessor.
-
-INCLUDE_PATH           =
-
-# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
-# patterns (like *.h and *.hpp) to filter out the header-files in the
-# directories. If left blank, the patterns specified with FILE_PATTERNS will
-# be used.
-
-INCLUDE_FILE_PATTERNS  =
-
-# The PREDEFINED tag can be used to specify one or more macro names that
-# are defined before the preprocessor is started (similar to the -D option of
-# gcc). The argument of the tag is a list of macros of the form: name
-# or name=definition (no spaces). If the definition and the = are
-# omitted =1 is assumed. To prevent a macro definition from being
-# undefined via #undef or recursively expanded use the := operator
-# instead of the = operator.
-
-PREDEFINED             = TIDY_EXPORT=
-
-# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
-# this tag can be used to specify a list of macro names that should be expanded.
-# The macro definition that is found in the sources will be used.
-# Use the PREDEFINED tag if you want to use a different macro definition that
-# overrules the definition found in the source code.
-
-EXPAND_AS_DEFINED      =
-
-# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
-# doxygen's preprocessor will remove all references to function-like macros
-# that are alone on a line, have an all uppercase name, and do not end with a
-# semicolon, because these will confuse the parser if not removed.
-
-SKIP_FUNCTION_MACROS   = NO
-
-#---------------------------------------------------------------------------
-# Configuration::additions related to external references
-#---------------------------------------------------------------------------
-
-# The TAGFILES option can be used to specify one or more tagfiles.
-# Optionally an initial location of the external documentation
-# can be added for each tagfile. The format of a tag file without
-# this location is as follows:
-#
-# TAGFILES = file1 file2 ...
-# Adding location for the tag files is done as follows:
-#
-# TAGFILES = file1=loc1 "file2 = loc2" ...
-# where "loc1" and "loc2" can be relative or absolute paths or
-# URLs. If a location is present for each tag, the installdox tool
-# does not have to be run to correct the links.
-# Note that each tag file must have a unique name
-# (where the name does NOT include the path)
-# If a tag file is not located in the directory in which doxygen
-# is run, you must also specify the path to the tagfile here.
-
-TAGFILES               =
-
-# When a file name is specified after GENERATE_TAGFILE, doxygen will create
-# a tag file that is based on the input files it reads.
-
-GENERATE_TAGFILE       =
-
-# If the ALLEXTERNALS tag is set to YES all external classes will be listed
-# in the class index. If set to NO only the inherited external classes
-# will be listed.
-
-ALLEXTERNALS           = NO
-
-# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
-# in the modules index. If set to NO, only the current project's groups will
-# be listed.
-
-EXTERNAL_GROUPS        = YES
-
-# The PERL_PATH should be the absolute path and name of the perl script
-# interpreter (i.e. the result of `which perl').
-
-PERL_PATH              = perl
-
-#---------------------------------------------------------------------------
-# Configuration options related to the dot tool
-#---------------------------------------------------------------------------
-
-# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
-# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
-# or super classes. Setting the tag to NO turns the diagrams off. Note that
-# this option also works with HAVE_DOT disabled, but it is recommended to
-# install and use dot, since it yields more powerful graphs.
-
-CLASS_DIAGRAMS         = NO
-
-# You can define message sequence charts within doxygen comments using the \msc
-# command. Doxygen will then run the mscgen tool (see
-# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the
-# documentation. The MSCGEN_PATH tag allows you to specify the directory where
-# the mscgen tool resides. If left empty the tool is assumed to be found in the
-# default search path.
-
-MSCGEN_PATH            =
-
-# If set to YES, the inheritance and collaboration graphs will hide
-# inheritance and usage relations if the target is undocumented
-# or is not a class.
-
-HIDE_UNDOC_RELATIONS   = YES
-
-# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
-# available from the path. This tool is part of Graphviz, a graph visualization
-# toolkit from AT&T and Lucent Bell Labs. The other options in this section
-# have no effect if this option is set to NO (the default)
-
-HAVE_DOT               = NO
-
-# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
-# allowed to run in parallel. When set to 0 (the default) doxygen will
-# base this on the number of processors available in the system. You can set it
-# explicitly to a value larger than 0 to get control over the balance
-# between CPU load and processing speed.
-
-DOT_NUM_THREADS        = 0
-
-# By default doxygen will use the Helvetica font for all dot files that
-# doxygen generates. When you want a differently looking font you can specify
-# the font name using DOT_FONTNAME. You need to make sure dot is able to find
-# the font, which can be done by putting it in a standard location or by setting
-# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the
-# directory containing the font.
-
-DOT_FONTNAME           = Helvetica
-
-# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs.
-# The default size is 10pt.
-
-DOT_FONTSIZE           = 10
-
-# By default doxygen will tell dot to use the Helvetica font.
-# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to
-# set the path where dot can find it.
-
-DOT_FONTPATH           =
-
-# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
-# will generate a graph for each documented class showing the direct and
-# indirect inheritance relations. Setting this tag to YES will force the
-# the CLASS_DIAGRAMS tag to NO.
-
-CLASS_GRAPH            = NO
-
-# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
-# will generate a graph for each documented class showing the direct and
-# indirect implementation dependencies (inheritance, containment, and
-# class references variables) of the class with other documented classes.
-
-COLLABORATION_GRAPH    = NO
-
-# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
-# will generate a graph for groups, showing the direct groups dependencies
-
-GROUP_GRAPHS           = YES
-
-# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
-# collaboration diagrams in a style similar to the OMG's Unified Modeling
-# Language.
-
-UML_LOOK               = NO
-
-# If set to YES, the inheritance and collaboration graphs will show the
-# relations between templates and their instances.
-
-TEMPLATE_RELATIONS     = NO
-
-# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
-# tags are set to YES then doxygen will generate a graph for each documented
-# file showing the direct and indirect include dependencies of the file with
-# other documented files.
-
-INCLUDE_GRAPH          = NO
-
-# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
-# HAVE_DOT tags are set to YES then doxygen will generate a graph for each
-# documented header file showing the documented files that directly or
-# indirectly include this file.
-
-INCLUDED_BY_GRAPH      = YES
-
-# If the CALL_GRAPH and HAVE_DOT options are set to YES then
-# doxygen will generate a call dependency graph for every global function
-# or class method. Note that enabling this option will significantly increase
-# the time of a run. So in most cases it will be better to enable call graphs
-# for selected functions only using the \callgraph command.
-
-CALL_GRAPH             = NO
-
-# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
-# doxygen will generate a caller dependency graph for every global function
-# or class method. Note that enabling this option will significantly increase
-# the time of a run. So in most cases it will be better to enable caller
-# graphs for selected functions only using the \callergraph command.
-
-CALLER_GRAPH           = NO
-
-# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
-# will generate a graphical hierarchy of all classes instead of a textual one.
-
-GRAPHICAL_HIERARCHY    = YES
-
-# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
-# then doxygen will show the dependencies a directory has on other directories
-# in a graphical way. The dependency relations are determined by the #include
-# relations between the files in the directories.
-
-DIRECTORY_GRAPH        = YES
-
-# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
-# generated by dot. Possible values are svg, png, jpg, or gif.
-# If left blank png will be used. If you choose svg you need to set
-# HTML_FILE_EXTENSION to xhtml in order to make the SVG files
-# visible in IE 9+ (other browsers do not have this requirement).
-
-DOT_IMAGE_FORMAT       = png
-
-# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
-# enable generation of interactive SVG images that allow zooming and panning.
-# Note that this requires a modern browser other than Internet Explorer.
-# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you
-# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files
-# visible. Older versions of IE do not have SVG support.
-
-INTERACTIVE_SVG        = NO
-
-# The tag DOT_PATH can be used to specify the path where the dot tool can be
-# found. If left blank, it is assumed the dot tool can be found in the path.
-
-DOT_PATH               =
-
-# The DOTFILE_DIRS tag can be used to specify one or more directories that
-# contain dot files that are included in the documentation (see the
-# \dotfile command).
-
-DOTFILE_DIRS           =
-
-# The MSCFILE_DIRS tag can be used to specify one or more directories that
-# contain msc files that are included in the documentation (see the
-# \mscfile command).
-
-MSCFILE_DIRS           =
-
-# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
-# nodes that will be shown in the graph. If the number of nodes in a graph
-# becomes larger than this value, doxygen will truncate the graph, which is
-# visualized by representing a node as a red box. Note that doxygen if the
-# number of direct children of the root node in a graph is already larger than
-# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
-# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
-
-DOT_GRAPH_MAX_NODES    = 50
-
-# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
-# graphs generated by dot. A depth value of 3 means that only nodes reachable
-# from the root by following a path via at most 3 edges will be shown. Nodes
-# that lay further from the root node will be omitted. Note that setting this
-# option to 1 or 2 may greatly reduce the computation time needed for large
-# code bases. Also note that the size of a graph can be further restricted by
-# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
-
-MAX_DOT_GRAPH_DEPTH    = 0
-
-# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
-# background. This is disabled by default, because dot on Windows does not
-# seem to support this out of the box. Warning: Depending on the platform used,
-# enabling this option may lead to badly anti-aliased labels on the edges of
-# a graph (i.e. they become hard to read).
-
-DOT_TRANSPARENT        = NO
-
-# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
-# files in one run (i.e. multiple -o and -T options on the command line). This
-# makes dot run faster, but since only newer versions of dot (>1.8.10)
-# support this, this feature is disabled by default.
-
-DOT_MULTI_TARGETS      = NO
-
-# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
-# generate a legend page explaining the meaning of the various boxes and
-# arrows in the dot generated graphs.
-
-GENERATE_LEGEND        = YES
-
-# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
-# remove the intermediate dot files that are used to generate
-# the various graphs.
-
-DOT_CLEANUP            = YES
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/quickref-html.xsl b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/quickref-html.xsl
deleted file mode 100644
index aaf5004..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/quickref-html.xsl
+++ /dev/null
@@ -1,240 +0,0 @@
-<?xml version="1.0"?>
-<!--
-    For generating the `quickref.html` web page from output of
-    `tidy -xml-config`
-
-    (c) 2005 (W3C) MIT, ERCIM, Keio University
-    See tidy.h for the copyright notice.
-
-    Written by Charles Reitzel and Jelks Cabaniss
-
--->
-
-<xsl:stylesheet version="1.0"
-                xmlns="http://www.w3.org/1999/xhtml"
-                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-
-<xsl:output method="xml" indent="yes"
-     encoding="us-ascii"
-     omit-xml-declaration="yes"
-     doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
-     doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" />
-
-<xsl:template match="/">
-  <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
-  <head>
-    <title>HTML Tidy Configuration Options Quick Reference</title>
-    <link type="text/css" rel="stylesheet" href="tidy.css" />
-  </head>
-
-  <body>
-    <h1 id="top">Quick Reference</h1>
-
-    <h2>HTML Tidy Configuration Options</h2>
-
-    <p>Version: <a href="{config/@version}"><xsl:value-of select="config/@version" /></a></p>
-
-    <p><a class="h3" href="#MarkupHeader">HTML, XHTML, XML</a><br />
-     <a class="h3" href="#DiagnosticsHeader">Diagnostics</a><br />
-     <a class="h3" href="#PrettyPrintHeader">Pretty Print</a><br />
-     <a class="h3" href="#EncodingHeader">Character Encoding</a><br />
-     <a class="h3" href="#MiscellaneousHeader">Miscellaneous</a></p>
-
-    <xsl:call-template name="link-section" />
-
-    <xsl:call-template name="detail-section" />
-
-  </body>
-  </html>
-</xsl:template>
-
-
-<!-- Named Templates: -->
-
-<xsl:template name="link-section">
-  <table summary="Tidy Options Quick Reference Header Section" border="0"
-  cellpadding="3" cellspacing="0">
-    <colgroup>
-      <col width="33%" />
-      <col width="33%" />
-      <col width="33%" />
-    </colgroup>
-    <xsl:call-template name="links">
-      <xsl:with-param name="class">markup</xsl:with-param>
-      <xsl:with-param name="header">HTML, XHTML, XML</xsl:with-param>
-      <xsl:with-param name="headerID">MarkupHeader</xsl:with-param>
-    </xsl:call-template>
-    <xsl:call-template name="links">
-      <xsl:with-param name="class">diagnostics</xsl:with-param>
-      <xsl:with-param name="header">Diagnostics</xsl:with-param>
-      <xsl:with-param name="headerID">DiagnosticsHeader</xsl:with-param>
-    </xsl:call-template>
-    <xsl:call-template name="links">
-      <xsl:with-param name="class">print</xsl:with-param>
-      <xsl:with-param name="header">Pretty Print</xsl:with-param>
-      <xsl:with-param name="headerID">PrettyPrintHeader</xsl:with-param>
-    </xsl:call-template>
-    <xsl:call-template name="links">
-      <xsl:with-param name="class">encoding</xsl:with-param>
-      <xsl:with-param name="header">Character Encoding</xsl:with-param>
-      <xsl:with-param name="headerID">EncodingHeader</xsl:with-param>
-    </xsl:call-template>
-    <xsl:call-template name="links">
-      <xsl:with-param name="class">misc</xsl:with-param>
-      <xsl:with-param name="header">Miscellaneous</xsl:with-param>
-      <xsl:with-param name="headerID">MiscellaneousHeader</xsl:with-param>
-    </xsl:call-template>
-  </table>
-</xsl:template>
-
-
-<xsl:template name="detail-section">
-  <table summary="Tidy Options Quick Reference Detail Section" border="0"
-    cellpadding="3" cellspacing="0">
-    <xsl:call-template name="reference">
-      <xsl:with-param name="class">markup</xsl:with-param>
-      <xsl:with-param name="header">HTML, XHTML, XML</xsl:with-param>
-      <xsl:with-param name="headerID">MarkupReference</xsl:with-param>
-    </xsl:call-template>
-    <xsl:call-template name="reference">
-      <xsl:with-param name="class">diagnostics</xsl:with-param>
-      <xsl:with-param name="header">Diagnostics</xsl:with-param>
-      <xsl:with-param name="headerID">DiagnosticsReference</xsl:with-param>
-    </xsl:call-template>
-    <xsl:call-template name="reference">
-      <xsl:with-param name="class">print</xsl:with-param>
-      <xsl:with-param name="header">Pretty Print</xsl:with-param>
-      <xsl:with-param name="headerID">PrettyPrintReference</xsl:with-param>
-    </xsl:call-template>
-    <xsl:call-template name="reference">
-      <xsl:with-param name="class">encoding</xsl:with-param>
-      <xsl:with-param name="header">Character Encoding</xsl:with-param>
-      <xsl:with-param name="headerID">EncodingReference</xsl:with-param>
-    </xsl:call-template>
-    <xsl:call-template name="reference">
-      <xsl:with-param name="class">misc</xsl:with-param>
-      <xsl:with-param name="header">Miscellaneous</xsl:with-param>
-      <xsl:with-param name="headerID">MiscellaneousReference</xsl:with-param>
-    </xsl:call-template>
-  </table>
-</xsl:template>
-
-
-<xsl:template name="links">
-  <xsl:param name="class"/>
-  <xsl:param name="header"/>
-  <xsl:param name="headerID"/>
-  <tr valign="bottom">
-    <td class="h3" colspan="2" id="{$headerID}">
-      <xsl:value-of select="$header"/> Options</td>
-    <td valign="top"><a href="#top">Top</a></td>
-  </tr>
-  <xsl:call-template name="ClassHeaders" />
-  <xsl:for-each select="/config/option[@class=$class]">
-    <xsl:sort select="name" order="ascending" />
-    <tr>
-      <td><a href="#{name}"><xsl:value-of select="name"/></a></td>
-      <td><xsl:apply-templates select="type"/></td>
-      <td><xsl:choose>
-            <xsl:when test="string-length(default) &gt; 0 ">
-              <xsl:apply-templates select="default" />
-            </xsl:when>
-            <xsl:otherwise>
-              <strong>-</strong>
-            </xsl:otherwise>
-        </xsl:choose>
-      </td>
-    </tr>
-  </xsl:for-each>
-  <tr valign="bottom">
-    <td colspan="3">&#160;</td>
-  </tr>
-</xsl:template>
-
-
-<xsl:template name="reference">
-  <xsl:param name="class"/>
-  <xsl:param name="header"/>
-  <xsl:param name="headerID"/>
-
-  <tr>
-    <td>&#160;</td>
-  </tr>
-  <tr valign="bottom">
-    <td valign="top" colspan="2" class="h2" id="{$headerID}">
-       <xsl:value-of select="$header"/> Options Reference
-    </td>
-  </tr>
-  <tr>
-    <td>&#160;</td>
-  </tr>
-
-  <xsl:for-each select="/config/option[@class=$class]">
-    <xsl:sort select="name" order="ascending" />
-    <tr>
-      <td class="tabletitle" valign="top" id="{name}">
-        <xsl:value-of select="name"/>
-      </td>
-      <td class="tabletitlelink" valign="top" align="right">
-      <a href="#top">Top</a></td>
-    </tr>
-    <tr>
-      <td valign="top">Type: <strong><xsl:value-of
-        select="type"/></strong><br />
-
-        <xsl:choose>
-          <xsl:when test="string-length(default) &gt; 0">
-            Default: <strong><xsl:apply-templates select="default" /></strong>
-          </xsl:when>
-          <xsl:otherwise>
-            Default: <strong>-</strong>
-          </xsl:otherwise>
-        </xsl:choose>
-
-        <xsl:choose>
-          <xsl:when test="string-length(example) &gt; 0">
-            <br />Example: <strong><xsl:apply-templates
-                select="example"/></strong>
-          </xsl:when>
-          <xsl:otherwise>
-            <br />Example: <strong>-</strong>
-          </xsl:otherwise>
-        </xsl:choose>
-      </td>
-      <td align="right" valign="top">
-        <xsl:for-each select="seealso">
-          <a href="#{.}"><xsl:apply-templates select="." /></a>
-          <xsl:if test="position() != last()">
-            <br />
-          </xsl:if>
-        </xsl:for-each>
-      </td>
-    </tr>
-
-    <tr>
-      <td colspan="2"><xsl:apply-templates select="description"/></td>
-    </tr>
-
-    <tr>
-      <td>&#160;</td>
-    </tr>
-  </xsl:for-each>
-</xsl:template>
-
-<xsl:template name="ClassHeaders">
-      <tr>
-        <td class="tabletitle">Option</td>
-        <td class="tabletitle">Type</td>
-        <td class="tabletitle">Default</td>
-      </tr>
-</xsl:template>
-
-
-<!-- Regular Templates: -->
-<xsl:template match="a | code | em | strong | br">
-    <xsl:element name="{local-name(.)}">
-        <xsl:copy-of select="@* | node()" />
-    </xsl:element>
-</xsl:template>
-
-</xsl:stylesheet>
diff --git a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/tidy1.xsl b/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/tidy1.xsl
deleted file mode 100644
index 414eb53..0000000
--- a/DocFormats/platform/3rdparty/w3c-tidy-html5/htmldoc/tidy1.xsl
+++ /dev/null
@@ -1,447 +0,0 @@
-<?xml version="1.0"?>
-<!--
-    For generating the `tidy.1` man page from the
-    output of `tidy -xml-help` and `tidy -xml-config`
-
-    (c) 2005-2007 (W3C) MIT, ERCIM, Keio University
-    See tidy.h for the copyright notice.
-
-    Written by Jelks Cabaniss and Arnaud Desitter
-
--->
-<xsl:stylesheet version="1.0"
-                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-
-<xsl:strip-space elements="description" />
-
-<xsl:output method="text" />
-
-<!--
-    The default template match is to the document passed on the
-    command line to the XSLT processor, currently "tidy-help.xml".
-    For the detailed config options section however, the template
-    match is to the file "tidy-config.xml".  This is captured in
-    the $CONFIG variable, declared here:
--->
-
-<xsl:variable name="CONFIG" select="document('tidy-config.xml')"/>
-
-
-<!-- Main Template: -->
-
-<xsl:template match="/">
-   <xsl:call-template name="header-section" />
-   <xsl:call-template name="cmdline-section" />
-   <xsl:call-template name="config-section" />
-   <xsl:call-template name="manpage-see-also-section" />
-</xsl:template>
-
-
-<!-- Named Templates: -->
-
-
-<xsl:template name="header-section">
-  <xsl:text/>.\" tidy man page for the HTML5 fork of Tidy
-.TH TIDY 1 "<xsl:value-of select="cmdline/@version" />" "HTML Tidy" "<xsl:value-of select="cmdline/@version" />"
-</xsl:template>
-
-
-<xsl:template name="cmdline-section">
-.\" disable hyphenation
-.nh
-.\" disable justification (adjust text to left margin only)
-.ad l
-.SH NAME
-\fBtidy\fR - check, correct, and pretty-print HTML(5) files
-.SH SYNOPSIS
-\fBtidy\fR [option ...] [file ...] [option ...] [file ...]
-.SH DESCRIPTION
-Tidy reads HTML(5), XHTML(5) and XML files and writes cleaned-up markup.  For HTML variants, it detects, reports, and corrects many common coding errors and strives to produce visually equivalent markup that is both conformant to the HTML specifications and that works in most browsers.
-.LP
-A common use of Tidy is to convert plain HTML to XHTML.  For generic XML files, Tidy is limited to correcting basic well-formedness errors and pretty printing.
-.LP
-If no input file is specified, Tidy reads the standard input.  If no output file is specified, Tidy writes the tidied markup to the standard output.  If no error file is specified, Tidy writes messages to the standard error.
-For command line options that expect a numerical argument, a default is assumed if no meaningful value can be found. 
-.SH OPTIONS
-<xsl:call-template name="show-cmdline-options" />
-.SH USAGE
-.LP
-Use \fB--\fR\fIoptionX valueX\fR for the detailed configuration option "optionX" with argument "valueX".  See also below under \fBDetailed Configuration Options\fR as to how to conveniently group all such options in a single config file.
-.LP
-Input/Output default to stdin/stdout respectively. Single letter options apart from \fB-f\fR and \fB-o\fR may be combined as in:
-.LP
-.in 1i
-\fBtidy -f errs.txt -imu foo.html\fR
-.SH ENVIRONMENT
-.TP
-.B HTML_TIDY
-Name of the default configuration file.  This should be an absolute path, since you will probably invoke \fBtidy\fR from different directories.  The value of HTML_TIDY will be parsed after the compiled-in default (defined with -DTIDY_CONFIG_FILE), but before any of the files specified using \fB-config\fR.
-.SH "EXIT STATUS"
-.IP 0
-All input files were processed successfully.
-.IP 1
-There were warnings.
-.IP 2
-There were errors.
-</xsl:template>
-
-
-<xsl:template name="config-section">
-.SH ______________________________
-.SH "  "
-.SH "DETAILED CONFIGURATION OPTIONS"
-This section describes the Detailed (i.e., "expanded") Options, which may be specified by preceding each option with \fB--\fR at the command line, followed by its desired value, OR by placing the options and values in a configuration file, and telling tidy to read that file with the \fB-config\fR standard option.
-.SH SYNOPSIS
-\fBtidy --\fR\fIoption1 \fRvalue1 \fB--\fIoption2 \fRvalue2 [standard options ...]
-.br
-\fBtidy -config \fIconfig-file \fR[standard options ...]
-.SH WARNING
-The options detailed here do not include the "standard" command-line options (i.e., those preceded by a single '\fB-\fR') described above in the first section of this man page.
-.SH DESCRIPTION
-A list of options for configuring the behavior of Tidy, which can be passed either on the command line, or specified in a configuration file.
-.LP
-A Tidy configuration file is simply a text file, where each option
-is listed on a separate line in the form
-.LP
-.in 1i
-\fBoption1\fR: \fIvalue1\fR
-.br
-\fBoption2\fR: \fIvalue2\fR
-.br
-etc.
-.LP
-The permissible values for a given option depend on the option's \fBType\fR.  There are five types: \fIBoolean\fR, \fIAutoBool\fR, \fIDocType\fR, \fIEnum\fR, and \fIString\fR. Boolean types allow any of \fIyes/no, y/n, true/false, t/f, 1/0\fR.  AutoBools allow \fIauto\fR in addition to the values allowed by Booleans.  Integer types take non-negative integers.  String types generally have no defaults, and you should provide them in non-quoted form (unless you wish the output to contain the literal quotes).
-.LP
-Enum, Encoding, and DocType "types" have a fixed repertoire of items; consult the \fIExample\fR[s] provided below for the option[s] in question.
-.LP
-You only need to provide options and values for those whose defaults you wish to override, although you may wish to include some already-defaulted options and values for the sake of documentation and explicitness.
-.LP
-Here is a sample config file, with at least one example of each of the five Types:
-.LP
-\fI
-    // sample Tidy configuration options
-    output-xhtml: yes
-    add-xml-decl: no
-    doctype: strict
-    char-encoding: ascii
-    indent: auto
-    wrap: 76
-    repeated-attributes: keep-last
-    error-file: errs.txt
-\fR
-.LP
-Below is a summary and brief description of each of the options. They are listed alphabetically within each category.  There are five categories: \fIHTML, XHTML, XML\fR options, \fIDiagnostics\fR options, \fIPretty Print\fR options, \fICharacter Encoding\fR options, and \fIMiscellaneous\fR options.
-.LP
-.SH OPTIONS
-<xsl:call-template name="show-config-options" />
-</xsl:template>
-
-
-<xsl:template name="show-cmdline-options">
-.SS File manipulation
-  <xsl:call-template name="cmdline-detail">
-     <xsl:with-param name="category">file-manip</xsl:with-param>
-  </xsl:call-template>
-.SS Processing directives
-  <xsl:call-template name="cmdline-detail">
-     <xsl:with-param name="category">process-directives</xsl:with-param>
-  </xsl:call-template>
-.SS Character encodings
-  <xsl:call-template name="cmdline-detail">
-     <xsl:with-param name="category">char-encoding</xsl:with-param>
-  </xsl:call-template>
-.SS Miscellaneous
-  <xsl:call-template name="cmdline-detail">
-     <xsl:with-param name="category">misc</xsl:with-param>
-  </xsl:call-template>
-</xsl:template>
-
-
-<xsl:template name="cmdline-detail">
-<!--
-For each option in one of the 3 categories/classes, provide its
-    1. names
-    2. description
-    3. equivalent configuration option
--->
-  <xsl:param name="category" />
-    <xsl:for-each select='/cmdline/option[@class=$category]'>
-<xsl:text>
-.TP
-</xsl:text>
-       <xsl:call-template name="process-names" />
-       <xsl:text>
-</xsl:text>
-       <xsl:apply-templates select="description" />
-       <xsl:text>
-</xsl:text>
-       <xsl:call-template name="process-eqconfig" />
-    </xsl:for-each>
-</xsl:template>
-
-
-<xsl:template name="process-names">
-<!-- Used only in the cmdline section -->
-  <xsl:for-each select="name">
-    <xsl:text />\fB<xsl:value-of select="." />\fR<xsl:text />
-    <xsl:if test="position() != last()">
-      <xsl:text>, </xsl:text>
-    </xsl:if>
-  </xsl:for-each>
-</xsl:template>
-
-
-<xsl:template name="process-eqconfig">
-<!-- Used only in the cmdline section -->
-  <xsl:if test="string-length(eqconfig) &gt; 0">
-   <xsl:for-each select="eqconfig">
-     <xsl:text>(\fI</xsl:text>
-     <xsl:value-of select="." />
-     <xsl:text>\fR)</xsl:text>
-   </xsl:for-each>
-  </xsl:if>
-</xsl:template>
-
-
-<xsl:template name="show-config-options">
-<!-- Used only in the cmdline section -->
-.SS HTML, XHTML, XML options:
-  <xsl:call-template name="config-detail">
-     <xsl:with-param name="category">markup</xsl:with-param>
-  </xsl:call-template>
-.SS Diagnostics options:
-  <xsl:call-template name="config-detail">
-     <xsl:with-param name="category">diagnostics</xsl:with-param>
-  </xsl:call-template>
-.SS Pretty Print options:
-  <xsl:call-template name="config-detail">
-     <xsl:with-param name="category">print</xsl:with-param>
-  </xsl:call-template>
-.SS Character Encoding options:
-  <xsl:call-template name="config-detail">
-     <xsl:with-param name="category">encoding</xsl:with-param>
-  </xsl:call-template>
-.SS Miscellaneous options:
-  <xsl:call-template name="config-detail">
-     <xsl:with-param name="category">misc</xsl:with-param>
-  </xsl:call-template>
-</xsl:template>
-
-
-<!--
-    Note that any templates called implicitly or explicitly
-    from the "config-detail" template below will match on
-    the document referred to by the $CONFIG variable, i.e.,
-    the file "tidy-config.xml", created by running
-
-        tidy -xml-config > tidy-config.xml
-
-    The $CONFIG variable is set at the top level of this
-    stylesheet.
--->
-
-<xsl:template name="config-detail">
-<!--
-For each option in one of the 5 categories/classes, provide its
-    1. name
-    2. type
-    3. default (if any)
-    4. example (if any)
-    5. seealso (if any)
-    6. description
--->
-  <xsl:param name="category" />
-    <xsl:for-each select='$CONFIG/config/option[@class=$category]'>
-       <xsl:sort select="name" order="ascending" />
-.TP
-\fB<xsl:apply-templates select="name" />\fR
-
-Type:    \fI<xsl:apply-templates select="type" />\fR
-.br
-<xsl:call-template name="provide-default" />
-.br
-<xsl:call-template name="provide-example" />
-<xsl:text>
-
-</xsl:text>
-<xsl:apply-templates select="description" />
-<xsl:call-template name="seealso" />
-    </xsl:for-each>
-</xsl:template>
-
-
-<!-- Used only in the config options section: -->
-<xsl:template name="seealso">
-  <xsl:if test="seealso">
-     <xsl:text>
-
-</xsl:text>
-.rj 1
-\fBSee also\fR: <xsl:text />
-    <xsl:for-each select="seealso">
-      <xsl:text />\fI<xsl:value-of select="." />\fR<xsl:text />
-      <xsl:if test="position() != last()">
-        <xsl:text>, </xsl:text>
-      </xsl:if>
-    </xsl:for-each>
-  </xsl:if>
-</xsl:template>
-
-
-<!-- Used only in the config options section: -->
-<xsl:template name="provide-default">
-<!--
-Picks up the default from the XML.  If the `default` element
-doesn't exist, or it's empty, a single '-' is provided.
--->
-  <xsl:choose>
-    <xsl:when test="string-length(default) &gt; 0 ">
-      <xsl:text />Default: \fI<xsl:apply-templates
-        select="default" />\fR<xsl:text />
-    </xsl:when>
-    <xsl:otherwise>
-      <xsl:text />Default: \fI-\fR<xsl:text />
-    </xsl:otherwise>
-  </xsl:choose>
-</xsl:template>
-
-
-<!-- Used only in the config options section: -->
-<xsl:template name="provide-example">
-<!--
-By default, doesn't output examples for String types (mirroring the
-quickref page).  But for *any* options in the XML instance that
-have an `example` child, that example will be used in lieu of a
-stylesheet-provided one. (Useful e.g. for `repeated-attributes`).
--->
-  <xsl:choose>
-    <xsl:when test="string-length(example) &gt; 0">
-      <xsl:text />Example: \fI<xsl:apply-templates
-          select="example" />\fR<xsl:text />
-    </xsl:when>
-    <xsl:otherwise>
-      <xsl:text />Default: \fI-\fR<xsl:text />
-    </xsl:otherwise>
-  </xsl:choose>
-</xsl:template>
-
-
-<!-- Called from the templates below matching `code`, `em`, `strong`: -->
-<xsl:template name="escape-backslash">
-<!--
-Since backslashes are "special" to the *roff processors used
-to generate man pages, we need to escape backslash characters
-appearing in content with another backslash.
--->
-  <xsl:choose>
-    <xsl:when test="contains(.,'\')">
-      <xsl:value-of select=
-        "concat( substring-before(.,'\'), '\\', substring-after(.,'\') )" />
-    </xsl:when>
-    <xsl:otherwise>
-      <xsl:apply-templates />
-    </xsl:otherwise>
-  </xsl:choose>
-</xsl:template>
-
-
-<!-- Appears at the bottom of the man page: -->
-<xsl:template name="manpage-see-also-section">
-.SH SEE ALSO
-For more information about the experimental HTML5 fork of Tidy:
-.RS 4
-.LP
-http://w3c.github.com/tidy-html5/
-.RE
-.LP
-For more information on HTML:
-.RS 4
-.LP
-\fBHTML: Edition for Web Authors\fR (the latest HTML specification)
-.br
-http://dev.w3.org/html5/spec-author-view
-.LP
-\fBHTML: The Markup Language\fR (an HTML language reference)
-.br
-http://dev.w3.org/html5/markup/
-.RE
-.LP
-For bug reports and comments:
-.RS 4
-.LP
-https://github.com/w3c/tidy-html5/issues/
-.RE
-.LP
-Or send questions and comments to \fBhtml-tidy@w3.org\fR
-.LP
-Validate your HTML documents using the \fBW3C Nu Markup Validator\fR:
-.RS 4
-.LP
-http://validator.w3.org/nu/
-.RE
-.SH AUTHOR
-\fBTidy\fR was written by \fBDave Raggett\fR &lt;dsr@w3.org&gt;, and subsequently maintained by a team at http://tidy.sourceforge.net/
-.LP
-The sources for the HTML5 fork of \fBTidy\fR are available at https://github.com/w3c/tidy-html5/ under the MIT Licence.
-</xsl:template>
-
-
-<!-- Regular Templates: -->
-
-
-<xsl:template match="description">
-   <xsl:apply-templates />
-</xsl:template>
-
-<xsl:template match="a">
-   <xsl:apply-templates />
-   <xsl:text /> at \fI<xsl:value-of select="@href" />\fR<xsl:text />
-</xsl:template>
-
-<xsl:template match="code | em">
-   <xsl:text />\fI<xsl:call-template name="escape-backslash" />\fR<xsl:text />
-</xsl:template>
-
-<xsl:template match="br">
-   <xsl:text>
-.br
-</xsl:text>
-</xsl:template>
-
-<xsl:template match="strong">
-   <xsl:text />\fB<xsl:call-template name="escape-backslash" />\fR<xsl:text />
-</xsl:template>
-
-
-<!--
-The following templates
-  a) normalize whitespace, primarily necessary for `description`
-  b) do so without stripping possible whitespace surrounding `code`
-  d) strip leading and trailing whitespace in 'description` and `code`
-(courtesy of Ken Holman on the XSL-list):
--->
-
-<xsl:template match="text()[preceding-sibling::node() and
-                             following-sibling::node()]">
-   <xsl:variable name="ns" select="normalize-space(concat('x',.,'x'))"/>
-   <xsl:value-of select="substring( $ns, 2, string-length($ns) - 2 )" />
-</xsl:template>
-
-<xsl:template match="text()[preceding-sibling::node() and
-                             not( following-sibling::node() )]">
-   <xsl:variable name="ns" select="normalize-space(concat('x',.))"/>
-   <xsl:value-of select="substring( $ns, 2, string-length($ns) - 1 )" />
-</xsl:template>
-
-<xsl:template match="text()[not( preceding-sibling::node() ) and
-                             following-sibling::node()]">
-   <xsl:variable name="ns" select="normalize-space(concat(.,'x'))"/>
-   <xsl:value-of select="substring( $ns, 1, string-length($ns) - 1 )" />
-</xsl:template>
-
-<xsl:template match="text()[not( preceding-sibling::node() ) and
-                             not( following-sibling::node() )]">
-   <xsl:value-of select="normalize-space(.)"/>
-</xsl:template>
-
-</xsl:stylesheet>
diff --git a/LICENSE.txt b/LICENSE.txt
index 6d3f49b..f65e14f 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -208,14 +208,42 @@
 code for the these subcomponents is subject to the terms and
 conditions of the following licenses. 
 
-- included in source with modifications:
 w3c-tidy-html5 (WC3/BSD like license, see DocFormats\platform\3rdparty\w3c-tidy-html5)
+-- copy of license --
+Copyright (c) 1998-2003 World Wide Web Consortium
+(Massachusetts Institute of Technology, European Research 
+Consortium for Informatics and Mathematics, Keio University).
+All Rights Reserved.
 
-- Link dependency (binary version), not included in the release:
-libxml2 (MIT license)
-SDL2 (zlib license)
-SDL2_image (zlib license)
-zlib (zlib license)
-jquery.js (MIT license)
+This software and documentation is provided "as is," and
+the copyright holders and contributing author(s) make no
+representations or warranties, express or implied, including
+but not limited to, warranties of merchantability or fitness
+for any particular purpose or that the use of the software or
+documentation will not infringe any third party patents,
+copyrights, trademarks or other rights. 
+
+The copyright holders and contributing author(s) will not be held
+liable for any direct, indirect, special or consequential damages
+arising out of any use of the software or documentation, even if
+advised of the possibility of such damage.
+
+Permission is hereby granted to use, copy, modify, and distribute
+this source code, or portions hereof, documentation and executables,
+for any purpose, without fee, subject to the following restrictions:
+
+1. The origin of this source code must not be misrepresented.
+2. Altered versions must be plainly marked as such and must
+   not be misrepresented as being the original source.
+3. This Copyright notice may not be removed or altered from any
+   source or altered source distribution.
+ 
+The copyright holders and contributing author(s) specifically
+permit, without fee, and encourage the use of this source code
+as a component for supporting the Hypertext Markup Language in
+commercial products. If you use this source code in a product,
+acknowledgment is not required but would be appreciated.
+-- --
+
 
 
diff --git a/LINK_DEPENDENCIES.txt b/LINK_DEPENDENCIES.txt
new file mode 100644
index 0000000..a02545c
--- /dev/null
+++ b/LINK_DEPENDENCIES.txt
@@ -0,0 +1,12 @@
+APACHE Corinthia links to a set of third party libraries, which are not
+included in the release, but are needed to build a binary.
+
+These libraries are not part of LICENSE, since they are not part of the
+release, and are therefore listed extra in this file:
+ 
+libxml2 (MIT license)
+SDL2 (zlib license)
+SDL2_image (zlib license)
+zlib (zlib license)
+
+