I'd like to replace all self-closed elements to the long syntax (because my web-browser is tripping on them).
Example
<iframe src="http://example.com/thing"/>
becomes
<iframe src="http://example.com/thing"></iframe>
I'm using python's flavor of regex.