需求:
在文章中img标签外面套<figure></figure>标签,并且在img标签中增加别对属性
Document document = Jsoup.parse(content);
document.select("img").wrap("<figure></figure>");
document.select("p:has(img)").tagName("i");
String doc=Jsoup.clean(document.toString(), Whitelist.basicWithImages().removeTags("i").addTags("figure").addAttributes("img", "imgscale", "data-size", "data-format"));
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。