Given some HTML in an erb file like this: ``` <div> something </div> ``` This extension incorrectly adds `#` for comments instead of `<!-- ... -->` 1. Select some text 2. Command Palette -> Toggle Block Comment 3. Disaster strikes! ```html # <div> # something # </div> ```
Given some HTML in an erb file like this:
This extension incorrectly adds
#for comments instead of<!-- ... -->