I work with jsoup1.6.2.jar. Consider the following code.
String data = "<textarea><table><tr><td>Look at the following elements</td></tr></table></textarea>";
Document doc = Jsoup.parse(data);
System.out.println(doc);
Output:
<html> <head></head> <body> <textarea><table><tr><td>Look at the following elements</td</tr</table</textarea> </body> </html>
Why is it missing the >
for self closing tags? I encountered this problem only with textarea so far. Can anyone help me with this?