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 tried to inline a style sheet using style!= import("style.css").
This doesn't work because the style tag content isn't treated as D expression and outputs <style><!--!= import("style.css")--></style>.
As a workaround string interpolation does work (style #{import("style.css")}).
I've checked that behavior against Jade, Jade - Template Engine, they treat style tags like any other tag.
The text was updated successfully, but these errors were encountered:
I tried to inline a style sheet using
style!= import("style.css")
.This doesn't work because the style tag content isn't treated as D expression and outputs
<style><!--!= import("style.css")--></style>
.As a workaround string interpolation does work (
style #{import("style.css")}
).I've checked that behavior against Jade, Jade - Template Engine, they treat style tags like any other tag.
The text was updated successfully, but these errors were encountered: