Skip to content
Snippets Groups Projects
Commit 9f7fe961 authored by Andreas Kempe's avatar Andreas Kempe
Browse files

parsers: voidlinux: don't ignore links

Having no links in the messages to avoid markdown syntax was not a good
idea. When links are referenced, they're currently replaced by empty
space which looks weird.
parent bdc0e0e0
No related branches found
No related tags found
No related merge requests found
...@@ -21,8 +21,7 @@ class Voidlinux: ...@@ -21,8 +21,7 @@ class Voidlinux:
def parse(self, entry): def parse(self, entry):
h = html2text.HTML2Text() h = html2text.HTML2Text()
h.ignore_emphasis = True h.ignore_emphasis = True
h.ignore_links = True h.ignore_links = False
h.ignore_images = True
h.ignore_images = True h.ignore_images = True
body = h.handle(entry.summary) body = h.handle(entry.summary)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment