new
This commit is contained in:
parent
ff7a980d9d
commit
3660559ca9
7
Makefile
Normal file
7
Makefile
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
HTML2MARKDOWN=html2text
|
||||||
|
|
||||||
|
README.md: README.html
|
||||||
|
$(HTML2MARKDOWN) $(HTML2MARKDOWNFLAGS) $< > $@
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) README.md
|
23
README.html
Normal file
23
README.html
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
<!doctype html>
|
||||||
|
<head>
|
||||||
|
<meta charset=utf8>
|
||||||
|
<title>About tidy-html5</title>
|
||||||
|
<style>
|
||||||
|
li span.note { display: block; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<h1>Tidy for HTML5</h1>
|
||||||
|
<p>This repo is a fork of the code from
|
||||||
|
<a href="http://tidy.sourceforge.net">tidy.sourceforge.net</a>.
|
||||||
|
This source code in this version supports processing of HTML5 documents,
|
||||||
|
using a
|
||||||
|
<a href="http://lists.w3.org/Archives/Public/www-archive/2011Nov/0007.html">patch developed by Björn Höhrmann</a>.</p>
|
||||||
|
|
||||||
|
<p>For *nix platforms, you can build and install from the source code using the
|
||||||
|
following steps.</p>
|
||||||
|
|
||||||
|
<ol>
|
||||||
|
<li><code>make -C build/gmake/</code></li>
|
||||||
|
<li><code>make install</code></li>
|
||||||
|
</ol>
|
Loading…
Reference in a new issue