Stillat / blade-parser-typescript

A Laravel Blade parser, compiler, and static analyzer written in TypeScript.
https://stillat.com
MIT License
90 stars 3 forks source link

Very specific `@if` and `@else` #35

Closed zepfietje closed 1 year ago

zepfietje commented 1 year ago
@if (true)
    {{ 'foo' }}
@else
    {{ 'bar' }}
    {{ 'baz' }}
@endif
@if (true)
    {{ 'foo' }}
@else
        {{ 'bar' }}
        {{ 'baz' }}
@endif
JohnathonKoster commented 1 year ago

Should be good to go as of 1.1.12 🙂

zepfietje commented 1 year ago

Yes, confirmed!