relax python-html2rest
Molecular dynamics by NMR data analysis
Brought to you by:
edauvergne,
troelslinnet
File | Date | Author | Commit |
---|---|---|---|
bin | 2016-11-17 |
![]() |
[516bde] The second argument, if supplied, is now treate... |
.gitignore | 2012-09-09 |
![]() |
[66414f] added .gitignore |
.hgignore | 2011-06-29 |
![]() |
[deef1e] initial |
.hgtags | 2011-06-30 |
![]() |
[028e61] Added tag 0.2 for changeset daf39519f737 |
LICENSE | 2011-06-29 |
![]() |
[deef1e] initial |
MANIFEST.in | 2012-09-09 |
![]() |
[9b1645] include LICENSE in source manifest |
README | 2011-06-29 |
![]() |
[86b94d] fix encoding issues + README |
html2rest.py | 2016-11-17 |
![]() |
[3aed2b] Addition of the --embedded-uri option to enable... |
pkg | 2012-09-09 |
![]() |
[b3b39e] simpler packaging grep |
setup.py | 2012-09-09 |
![]() |
[a6edb0] update for release |
html2rest.py ============ Convert HTML to restructuredText. Very limited, but intended as a "50%" tool, to be followed by manual editing. Install ####### :: easy_install html2rest Or:: pip install html2rest Usage ##### From the command line:: html2rest http://sphinx.pocoo.org/templating.html > templating.rst Or programmatically:: from html2rest import html2rest stream = StringIO() html2rest('<ul><li>one</li><li>two</li></ul>', writer=stream) Specify input encoding (default is 'utf8') and a preprocessor:: def strip_chars(html): return html.replace('¶', '') html2rest(html, writer=stream, encoding='latin1', preprocess=strip_chars)