Skip to content

Instantly share code, notes, and snippets.

@cvan
Created July 21, 2020 23:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cvan/93376f56e5dd5a2bbbcf152490de7d66 to your computer and use it in GitHub Desktop.
Save cvan/93376f56e5dd5a2bbbcf152490de7d66 to your computer and use it in GitHub Desktop.
strip html comments javascript
function stripHtmlComments(html) {
// Remove HTML comments (useful for removing developer-facing comments from production HTML markup).
return html.replace(/<!--[\s\S]*?(?:-->)/g, '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment