jayhjkwon / atom-block-comment

block comment/uncomment for atom editor
MIT License
13 stars 11 forks source link

Cannot Comment out Javascript within a HTML file #4

Closed jonniedarko closed 10 years ago

jonniedarko commented 10 years ago

When I try to comment out javascript inside the javascript Tags it still use's the HTML Comment's for example if I end up with the following when I try to do so

<script>
<!--
var x = 10;
-->
</script>

When what I would expect is

<script>
/*
var x = 10;
*/
</script>
jonniedarko commented 10 years ago

Sorry I just realised an Issue for this is already open here closing now