需求:
在文章中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"));
        

asoren
404 声望15 粉丝

引用和评论

0 条评论