From e1ee2fb1e881a718d98a470d7e7c00cd66dc8bb0 Mon Sep 17 00:00:00 2001 From: Florent Date: Wed, 7 Nov 2012 20:00:00 +0100 Subject: [PATCH] Do not use inline link but display links regulary --- weboob/tools/misc.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/weboob/tools/misc.py b/weboob/tools/misc.py index 26d80c4a..95154f1c 100644 --- a/weboob/tools/misc.py +++ b/weboob/tools/misc.py @@ -65,6 +65,8 @@ try: import html2text as h2t h2t.UNICODE_SNOB = 1 h2t.SKIP_INTERNAL_LINKS = True + h2t.INLINE_LINKS = False + h2t.LINKS_EACH_PARAGRAPH = True html2text = h2t.html2text except ImportError: warning('python-html2text is not present. HTML pages will not be converted into text.')