2015-03-05 23:28:52 +00:00
/*!
\mainpage Tidy home
2015-03-06 07:38:16 +00:00
\note The repository <a href="https://github.com/htacg/tidy-html5">github.com/htacg/tidy-html5</a> and this documentation should be considered canonical for HTML Tidy as of 2015-January-15. See \ref history
2015-03-05 23:28:52 +00:00
\b Tidy corrects and cleans up HTML content by fixing markup errors such as mismatched, misnested and missing tags, missing end "/" tags, missing quotations et all, eg:
\code{.html}
<h1><hr>heading</h1>
<h2>sub<hr>heading</h2>
<a href="#refs">References<a>
\endcode
is converted to
\code{.html}
<hr>
<h1>heading</h1>
<h2>sub</h2>
<hr>
<h2>heading</h2>
<a href="#refs">References</a>
\endcode
2015-03-06 01:01:22 +00:00
<h4>This project has two parts:</h4>
2015-03-05 23:28:52 +00:00
- \ref tidylib
2015-03-06 01:01:22 +00:00
- a C static or dynamic library that developers can integrate into their applications
2015-03-05 23:28:52 +00:00
in order to bring all of Tidy’ s power to your favorite tools.
2015-03-06 01:01:22 +00:00
- \ref tidy_cmd
- a console application built on \ref tidylib for Mac OS X, Linux, Windows, UNIX, and more.
2015-03-05 23:28:52 +00:00
\section content Contents
2015-03-06 06:38:57 +00:00
- \ref quick_ref
2015-03-06 01:01:22 +00:00
- \ref tidy_cmd
2015-03-05 23:55:59 +00:00
- \ref tidy_quickstart
2015-03-05 23:28:52 +00:00
- \ref tidy_config
2015-03-06 01:01:22 +00:00
- \ref featured_options
2015-03-05 23:55:59 +00:00
- \ref tidy_scripting
2015-03-05 23:28:52 +00:00
- \ref tidylib
- <a href="modules.html">Modules</a>
- \ref building_tidy
2015-03-06 06:38:57 +00:00
-\ref docs_howto
- \subpage history
- \subpage license
2015-03-05 23:28:52 +00:00
- \ref todo
*/