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
I have an 11ty site in which I use liquid as the template-language. I often use condifional classes, which causes headwind to stop working.
Example which doesn't sort: <div class="rounded-full {{ bg }} relative"></div>
I would like it to at least keep sorting the regular tailwind classes and ignore the {{ bg }} part. Preferably it would move those custom tags to the front or end (like custom classes). So like this for instance: <div class="{{ bg }} relative rounded-full"></div>
what might cause difficulties are things like this: focus:{{ bg }}
The text was updated successfully, but these errors were encountered:
I have an 11ty site in which I use liquid as the template-language. I often use condifional classes, which causes headwind to stop working.
Example which doesn't sort:
<div class="rounded-full {{ bg }} relative"></div>
I would like it to at least keep sorting the regular tailwind classes and ignore the {{ bg }} part. Preferably it would move those custom tags to the front or end (like custom classes). So like this for instance:
<div class="{{ bg }} relative rounded-full"></div>
what might cause difficulties are things like this:
focus:{{ bg }}
The text was updated successfully, but these errors were encountered: