Muthukirthan

Results 2 issues of Muthukirthan

Not able to identify whether the input document has `&` or `&` in the text node, since Jsoup escapes the character in text node. Same goes to other entities like...

# Case1 **Input:** `a&nbspc` **Brower result:** `a c` `&nbsp` is recognized as ` ` html entity **Jsoup parsed content:** `a&nbspc` **Brower result:** `a&nbspc` `&nbsp` is not recognized which shows different result...