gawel / pyquery

A jquery-like library for python
http://pyquery.rtfd.org/
Other
2.3k stars 182 forks source link

Invalid self-closing tags #136

Closed JivanRoquet closed 8 years ago

JivanRoquet commented 8 years ago
>>> d = pq('<div></div>')
>>> d.outerHtml()
'<div/>'

You can't do that. It's invalid.

Output should be '<div></div>' instead.