2014-08-03 17:36:45 +00:00
|
|
|
# HTML Tidy with HTML5 support
|
|
|
|
|
2015-01-31 10:09:33 +00:00
|
|
|
This repository consists of the stable and development branches of HTML Tidy.
|
2011-11-17 02:58:38 +00:00
|
|
|
|
2015-01-31 10:09:33 +00:00
|
|
|
- branch **develop-\*\*\*** consists of the current development and release candidate
|
|
|
|
for **HTML Tidy**. Release Candidates can be identified with git tags.
|
2011-11-17 02:58:38 +00:00
|
|
|
|
2015-01-31 10:09:33 +00:00
|
|
|
- branch **master** consists of the current, stable release of **HTML Tidy**.
|
2011-11-17 02:58:38 +00:00
|
|
|
|
|
|
|
|
2015-01-31 10:09:33 +00:00
|
|
|
## Build the tidy library and command line tool
|
2014-08-03 17:31:32 +00:00
|
|
|
|
2015-01-31 10:09:33 +00:00
|
|
|
1. `cd build/cmake`
|
2014-08-03 17:31:32 +00:00
|
|
|
|
2015-01-31 10:09:33 +00:00
|
|
|
2. `cmake ../.. [-DCMAKE_INSTALL_PREFIX=/path/for/install]`
|
2014-08-03 19:14:48 +00:00
|
|
|
|
2015-01-31 10:09:33 +00:00
|
|
|
3. Windows: `cmake --build . --config Release`
|
|
|
|
Unix/OS X: `make`
|
|
|
|
|
|
|
|
4. Install, if desired:
|
|
|
|
Windows: `cmake --build . --config Release --target INSTALL`
|
|
|
|
Unix/OS X: `[sudo] make install`
|
|
|
|
|
|
|
|
|
|
|
|
## History
|
|
|
|
|
|
|
|
This repository should be considered canonical for HTML Tidy as of 2015-January-15.
|
2014-08-03 19:14:48 +00:00
|
|
|
|
2015-01-31 10:09:33 +00:00
|
|
|
- This repository originally transferred from [w3c.github.com/tidy-html5][1].
|
|
|
|
|
|
|
|
- First moved to Github from [tidy.sourceforge.net][2].
|
2014-08-03 19:14:48 +00:00
|
|
|
|
|
|
|
|
2015-01-31 10:09:33 +00:00
|
|
|
[1]: http://w3c.github.com/tidy-html5/
|
2014-08-03 19:14:48 +00:00
|
|
|
|
2015-01-31 10:09:33 +00:00
|
|
|
[2]: http://tidy.sourceforge.net
|
2014-08-03 19:14:48 +00:00
|
|
|
|