texthero.preprocessing.remove_html_tags¶
Remove html tags from the given Pandas Series.
Remove all html tags of the type <.*?> such as <html>, <p>, <div class=”hello”> and remove all html tags of type   and return a cleaned Pandas Series.
Examples
>>> s = pd.Series("<html><h1>Title</h1></html>") >>> remove_html_tags(s) 0 Title dtype: object