I have a .html file that contains only this text:
<script>
let a = 1;
let b = 2;
</script>
If I highlight the two lines of javascript and press alt+/, it turns into this:
<script>
<!-- let a = 1; -->
<!-- let b = 2; -->
</script>
when it should instead turn into this:
<script>
// let a = 1;
// let b = 2;
</script>
Not a huge deal but it would be nice if it could handle scripts embedded within HTML like this.
Thanks for the great plugin in any case! :)