Stillat / blade-parser-typescript

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

Blade component attribute comment #57

Closed zepfietje closed 1 year ago

zepfietje commented 1 year ago

The following input:

<x-foo {{-- foo="" --}} />

gets formatted as:

<x-foo {{ -- foo="" -- }} />

This only happens on Blade components, not when x-foo is replaced by input for example.

JohnathonKoster commented 1 year ago

Thanks! Will get this sorted for the next release 🙂

On Fri, Jun 9, 2023 at 5:42 AM Zep Fietje @.***> wrote:

The following input:

<x-foo {{-- foo="" --}} />

gets formatted as:

<x-foo {{ -- foo="" -- }} />

This only happens on Blade components, not when x-foo is replaced by input for example.

— Reply to this email directly, view it on GitHub https://github.com/Stillat/blade-parser-typescript/issues/57, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABH5R6WPWHL64VBYJU232FDXKL42TANCNFSM6AAAAAAZAPEEYE . You are receiving this because you are subscribed to this thread.Message ID: @.***>

-- John Koster

JohnathonKoster commented 1 year ago

Resolved in 1.5.5 🙂

zepfietje commented 1 year ago

Perfect, thanks again John!