laravel-blade-snippets-vscode
laravel-blade-snippets-vscode copied to clipboard
Variables in style don't have syntax highlight.
Not sure if this is a local bug or a unimplemented feature, but variables in style are not highlighted.
Expected:
- $colors['primary'] has some sort of syntax highlight.
<style>
:root {
--primary: "{{ $colors['primary'] }}";
}
</style>