How to replace links with anchors in html (python)?
for example input:
<p> Hello <a href="http://example.com">link text1</a> and <a href="http://example.com">link text2</a> ! </p> i want at result with saved p tag (just a tag remove):
<p> Hello link text1 and link text2 ! </p>