I want to mix HTML and SCSS/Sass in one file. Is there a way to make PhpStorm to respect both languages?
Something like this:
<html>
<h1>a Header</h1>
<p>some text</p>
<style lang="scss">
h1 {
color: red;
span {
color: green;
}
}
</style>
</html>
Is there a way to make PhpStorm to format such a thing correct?