You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, I'm fairly certain this is a problem with the lambdasoup library. It eats attrs it doesn't recognize when it tries to pretty print. You can get around this by disabling pretty print in your soupault config. When I took your example and added
Currently the parser (aantron/lambdasoup#12) remove the namespace which break html page that use AlpineJS.
For example:
transformed into
However, the alternative syntax works fine, e.g
x-on:click
->@click
x-bind:placeholder
->:placeholder
Not AlpineJS related issues but it might cause trouble on other buildless js/html framework:
::
transformed into::=""
(not removed 👍)name:="value"
transformed into="value"
(malformed 👎)The text was updated successfully, but these errors were encountered: