/usr/share/doc/python-tidylib/README is in python-tidylib 0.2.1~dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | For documentation, see docs/html/index.html in this distribution, or
http://countergram.com/open-source/pytidylib/
Small example of use:
from tidylib import tidy_document
document, errors = tidy_document('''<p>fõo <img src="bar.jpg">''',
options={'numeric-entities':1})
print document
print errors
|