[utils] Strip double spaces in `clean_html`

Closes #2497
Authored by: dirkf
pull/2682/head
pukkandan 2 years ago
parent 65662dffb1
commit 4918522735
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

@ -639,10 +639,9 @@ def clean_html(html):
if html is None: # Convenience for sanitizing descriptions etc.
return html
# Newline vs <br />
html = html.replace('\n', ' ')
html = re.sub(r'(?u)\s*<\s*br\s*/?\s*>\s*', '\n', html)
html = re.sub(r'(?u)<\s*/\s*p\s*>\s*<\s*p[^>]*>', '\n', html)
html = re.sub(r'\s+', ' ', html)
html = re.sub(r'(?u)\s?<\s?br\s?/?\s?>\s?', '\n', html)
html = re.sub(r'(?u)<\s?/\s?p\s?>\s?<\s?p[^>]*>', '\n', html)
# Strip html tags
html = re.sub('<.*?>', '', html)
# Replace html entities

Loading…
Cancel
Save