diff options
author | Eric Abrahamsen <girzel@gmail.com> | 2009-01-28 13:44:39 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2009-01-28 13:52:44 -0500 |
commit | c89c1263798eaedffa09077819e769b019801556 (patch) | |
tree | ed9023a9338a04a115c13aab41add006a09fd36b /tests/html4 | |
parent | 94c7c29f4e766032520ffac8a080c3bdba6c4da4 (diff) | |
download | markdown-c89c1263798eaedffa09077819e769b019801556.tar.gz markdown-c89c1263798eaedffa09077819e769b019801556.tar.bz2 markdown-c89c1263798eaedffa09077819e769b019801556.zip |
Added optional HTML 4 output. Available formats currently include XHTML 1 and HTML 4.
Thanks to Eric Abrahamsen for doing the legwork and providing an initial
working patch. And thanks to Fredrik Lundh for allowing us to include his
html4 serializer from the ElementTree 1.3 preview.
Diffstat (limited to 'tests/html4')
-rw-r--r-- | tests/html4/html4.html | 2 | ||||
-rw-r--r-- | tests/html4/html4.txt | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/html4/html4.html b/tests/html4/html4.html new file mode 100644 index 0000000..7c88ad7 --- /dev/null +++ b/tests/html4/html4.html @@ -0,0 +1,2 @@ +<p>A test of the most<br> +basic of html/xhtml differences.</p>
\ No newline at end of file diff --git a/tests/html4/html4.txt b/tests/html4/html4.txt new file mode 100644 index 0000000..fddaf8e --- /dev/null +++ b/tests/html4/html4.txt @@ -0,0 +1,2 @@ +A test of the most +basic of html/xhtml differences.
\ No newline at end of file |