Regex to strip everything except <h3>, <h4> and <h5> tags and the text within these tags
Platform: javascriptInput: <div><p>Some text</p><h3><a href ="#">link text here</a></h3></div>Output: <h3>link text here</h3>