gulp-minify-inline
Version:
Gulp plugin to uglify inline JS and minify inline CSS
21 lines (20 loc) • 308 B
HTML
<html lang="en">
<head>
<script>
// JSComment
const a = 1;
var dangerousString = 'STRING\x3c/script>';
let es6template = `--${a}--`;
</script>
<style>
/*! CSSComment */
body {
background-color: #cccccc;
}
</style>
</head>
<body>
<span class="non-ascii">йцäöʊşə</span>
</body>
</html>