Go to file
Michael[tm] Smith 45fce5e3c2 Merge branch 'master' of github.com:w3c/tidy-html5
Forgot to pull.
2012-06-20 16:51:43 +09:00
build Merge pull request #1 from ermshiperete/master 2012-01-01 23:21:12 -08:00
console Added omit-optional-tags option. Fixes #22. 2012-03-24 19:04:46 +09:00
experimental new 2011-11-17 11:44:16 +09:00
htmldoc Point to http://w3c.github.com/tidy-html5/ where appropriate. 2012-03-17 17:07:48 +09:00
include Added show-info option. Fixes #6. 2012-04-02 16:41:05 +09:00
src Merge branch 'master' of github.com:w3c/tidy-html5 2012-06-20 16:51:43 +09:00
test Removed some bad/obsolete test cases. Fixes #32. 2012-04-23 11:39:38 +09:00
.gitignore Added the API docs. 2012-03-01 17:54:20 +09:00
Makefile Never automatically re-make the API docs. 2012-03-01 23:03:24 +09:00
README.html Add info about building shared lib. Fixes #25. 2012-03-28 00:41:17 +09:00
README.md Add info about building shared lib. Fixes #25. 2012-03-28 00:41:17 +09:00
index.html Added show-info option. Fixes #6. 2012-04-02 16:41:05 +09:00
license.html More cleanup. 2012-03-01 22:57:11 +09:00
quickref.html Update version. 2012-04-26 00:31:18 +09:00
tidy.css Made minor build changes. 2012-03-01 18:17:51 +09:00

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.