Go to file
Michael[tm] Smith 264c9bc043 HTML IDs can contain anything except whitespace.
Introduced TY_(IsHTMLSpace)(uint c), which checks to see if c is one of the
chars that the HTML spec (and browsers) treat as a space in attribute
values: 0x020 (space), 0x009 (tab), 0x00a (LF), 0x00c (FF), or 0x00d (CF).
Can't use ANSI C isspace(int c) here because like standard functions for
many other langs, it also treats 0x00b as a space.
2012-01-02 16:12:51 +09:00
build Make msvc build files have dos line endings. 2011-12-10 12:21:43 +09:00
console reference github location on version output 2011-11-17 16:21:24 +09:00
experimental new 2011-11-17 11:44:16 +09:00
htmldoc reference github location on version output 2011-11-17 16:21:24 +09:00
include report missing href & rel for link elements 2011-11-20 20:58:35 +09:00
src HTML IDs can contain anything except whitespace. 2012-01-02 16:12:51 +09:00
test new 2011-11-17 11:44:16 +09:00
html5-for-html-tidy.patch-2 new 2011-11-17 11:44:16 +09:00
Makefile makefile tweak 2011-11-20 19:42:28 +09:00
README.html cruft removal 2011-11-20 20:59:23 +09:00
README.md further tweak build instructions 2011-11-18 22:58:14 +09:00

Tidy for HTML5

This repo is a 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 *nix platforms, you can build and install 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.