MCPcopy Create free account
hub / github.com/AutoViML/AutoViz / remove_html

Function remove_html

autoviz/AutoViz_NLP.py:209–211  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

207
208# Remove just HTML markup language
209def remove_html(text):
210 html = re.compile(r'<.*?>')
211 return html.sub(r'', text)
212
213
214# Convert Emojis to Text

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected