The following is an example of the text I need to parse.
<P>The symbol <IMG id="pic1" height=15 src="images/itemx/image001.gif" width=18>indicates......</P>
I need to perform a cleanup. So applying the following code will remove the src attribute as it doesn't start with a valid protocol. Anyway to configure Jsoup to pickup the attribute? I want to avoid using absolute url if possible.
Jsoup.clean(content, Whitelist.basicWithImages());