fxbois / web-mode

web template editing mode for emacs
https://web-mode.org
GNU General Public License v3.0
1.63k stars 262 forks source link

Blade: `@if` with following space: condition not highlighted #1311

Open cweiske opened 1 month ago

cweiske commented 1 month ago

In a laravel .blade.php template, the condition in an @if statement is only highlighted when there is no space between @if and (: 2024-05-30 blade web-mode if

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.