laravel-tag-helper
laravel-tag-helper copied to clipboard
Support for single quoted attributes?
I noticed there's a compatibility issue with templates that have single quoted attributes, such as Laravel Telescope. Couldn't find out specifically where the issue lies (perhaps in the dom parser used?) but here's an example of what's happening.
Original Blade file:

Compiled view without Laravel Tag Helper:

After Laravel Tag Helpers has done its thing:

Problem disappears when swapping out the quotes to normal double quotes, but I think single quotes are still perfectly valid html and not extremely rare either.