Skip to content

Instantly share code, notes, and snippets.

@ccjeng
Created December 28, 2015 02:19
Show Gist options
  • Save ccjeng/e13083cdf6655fc01d1d to your computer and use it in GitHub Desktop.
Save ccjeng/e13083cdf6655fc01d1d to your computer and use it in GitHub Desktop.
Android Jsoup Whitelist
Whitelist wlist=new Whitelist();
wlist.addTags("table","tbody","tr","td");
wlist.addTags("img").addAttributes("img","src");
Log.d(TAG, Jsoup.clean(rs, wlist));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment