• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H16-Nov-2016-2,2631,809

tests/H16-Nov-2016-324164

tidylib/H03-May-2022-349221

LICENSEH A D22-Sep-20161 KiB2016

MANIFEST.inH A D22-Sep-2016261 1312

PKG-INFOH A D16-Nov-20162.8 KiB6954

READMEH A D22-Sep-2016304 118

setup.pyH A D03-May-20223.7 KiB9962

README

1This is a Python wrapper around the HTML Tidy library. Quick start example:
2
3from tidylib import Tidy
4tidy = Tidy()
5document, errors = tidy.tidy_document('<p>f&otilde;o <img src="bar.jpg">',
6    options={'alt-text': 'baz'})
7print(document)
8print(errors)
9
10For full documentation, see the docs/ directory.
11