Closed mlrawlings closed 3 years ago
Reported by @flyball:
Given a *.marko file:
*.marko
<script> var foo; </script> <div></div>
When I highlight, <div></div> and press ⌘ + /, I get html style comments:
<div></div>
⌘
/
<script> var foo; </script> <!-- <div></div> -->
But when I highlight, var foo; and press ⌘ + /, I still get html style comments:
var foo;
<script> <!-- var foo; --> </script> <div></div>
I would expect to get JS style comments as I do in *.html files.
*.html
This is now fixed
Reported by @flyball:
Given a
*.marko
file:When I highlight,
<div></div>
and press⌘
+/
, I get html style comments:But when I highlight,
var foo;
and press⌘
+/
, I still get html style comments:I would expect to get JS style comments as I do in
*.html
files.