Remove HTML/JavaScript Comments
function removeComments(html) {
return (''+html)
.replace/*HTMLComments*/(/<!-[\S\s]*?-->/gm, '')
.replace/*JSBlockComments*/(/\/\*[\S\s]*?\*\//gm,'')
.replace/*JSLineComments*/(/^.*?\/\/.*/gm, '$1') // FIXME
}