mirror of https://github.com/logos-co/open-law.git
10 lines
193 B
Python
10 lines
193 B
Python
|
import re
|
||
|
|
||
|
# as per recommendation from @freylis, compile once only
|
||
|
CLEANR = re.compile("<.*?>")
|
||
|
|
||
|
|
||
|
def clean_html(raw_html):
|
||
|
clean_text = re.sub(CLEANR, "", raw_html)
|
||
|
return clean_text
|