web-mode
web-mode copied to clipboard
Blade: `@if` with following space: condition not highlighted
In a laravel .blade.php template, the condition in an @if
statement is only highlighted when there is no space between @if
and (
:
Highlighted:
@if($feedbackform && false)
{{$feedbackform}}
@endif
Not highlighted:
@if ($feedbackform && false)
{{$feedbackform}}
@endif
The laravel blade documentation itself uses a single space between @if
and the opening parenthesis: https://laravel.com/docs/11.x/blade#if-statements
This is with emacs 28.2 on Debian 12 using web-mode 20240413.1455. There is no update installable.