Here you can find the source of formatDocument(Document doc)
public static Document formatDocument(Document doc)
//package com.java2s; //License from project: Open Source License import org.jsoup.nodes.Document; public class Main { public static Document formatDocument(Document doc) { doc.getElementsByTag("script").remove(); doc.getElementsByTag("link").attr("rel", "stylesheet").remove(); doc.getElementsByTag("style").remove(); doc.getElementsByTag("img").addClass("img-responsive"); return doc; }/*from ww w . java 2 s. c om*/ }