diff --git a/index.html b/index.html index 9b36c5d..ef3747f 100644 --- a/index.html +++ b/index.html @@ -554,6 +554,32 @@ if (close(TIDY) == 0) {

The source code for the experimental HTML5 fork of Tidy can be found at https://github.com/w3c/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. +
  3. make install -C build/gmake/
  4. +
+ +

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. +
  3. make install
  4. +
+ +

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

+

Acknowledgements

Dave Raggett has a list of Acknowledgements @@ -590,6 +616,8 @@ original version of Tidy.

  • Correcting well-formedness errors in XML markup
  • Using Tidy from scripts
  • Source code +
  • Building the tidy command-line tool +
  • Building the tidylib shared library
  • Acknowledgements