From 3660559ca9d2b0fa47c62b119d206a2e5dfe71fd Mon Sep 17 00:00:00 2001 From: "Michael[tm] Smith" Date: Thu, 17 Nov 2011 12:16:11 +0900 Subject: [PATCH] new --- Makefile | 7 +++++++ README.html | 23 +++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 Makefile create mode 100644 README.html diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7820432 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +HTML2MARKDOWN=html2text + +README.md: README.html + $(HTML2MARKDOWN) $(HTML2MARKDOWNFLAGS) $< > $@ + +clean: + $(RM) README.md diff --git a/README.html b/README.html new file mode 100644 index 0000000..85cbbaa --- /dev/null +++ b/README.html @@ -0,0 +1,23 @@ + + + + About tidy-html5 + + + +

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