tree: b214ad629cab9ffb592c9a3060882bcb6e083d1d [path history] [tgz]
  1. console/
  2. include/
  3. src/
  4. .gitignore
  5. index.html
  6. license.html
  7. Makefile
  8. quickref.html
  9. README.html
  10. README.md
  11. tidy.css
DocFormats/platform/3rdparty/w3c-tidy-html5/README.md

HTML Tidy for HTML5 (experimental)

This repo is an experimental fork of the code from tidy.sourceforge.net. This source code in this version supports processing of HTML5 documents. The changes for HTML5 support started from a patch developed by Björn Höhrmann.

For more information, see w3c.github.com/tidy-html5

Building the tidy command-line tool

For Linux/BSD/OSX platforms, you can build and install the tidy command-line tool from the source code using the following steps.

  1. make -C build/gmake/

  2. make install -C build/gmake/

Note that you will either need to run make install as root, or with sudo make install.

Building the libtidy shared library

For Linux/BSD/OSX platforms, you can build and install the tidylib shared library (for use in building other applications) from the source code using the following steps.

  1. sh build/gnuauto/setup.sh && ./configure && make

  2. make install

Note that you will either need to run make install as root, or with sudo make install.