This update fixes issue #178. Calling .html() on element with no children but with HTML entities would previously result in returning them decoded, ex pq("<p><</p>")("p").html() would return <, while it should return <, but now it should return them as they should.
This update fixes issue #178. Calling
.html()
on element with no children but with HTML entities would previously result in returning them decoded, expq("<p><</p>")("p").html()
would return<
, while it should return<
, but now it should return them as they should.