michaelp0730
1/19/2015 - 6:26 PM

Verify Self-Closing HTML Tags.js

var tags = /^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i;

function convert(html) {
	return html.replace(/(<(\w+)[^>]*?)\/>/g, function (all, front, tag) {
		return tags.test(tag) ?
		all :
		front + "></" + tag + ">";
	});
}