-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
contentRule (`text "foo") #263
Comments
For anyone reading, the fix is to add quotes: ReasonML OCaml ReScript |
it used to be working 😕 something changed |
giraud
added a commit
that referenced
this issue
Oct 17, 2023
adding quotes if missing (text not starting with ' or ") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
contentRule (``text "•")
it yields at runtime:This happens since it transforms to
content: ""
in JavaScript instead ofcontent: '""'
. Would make sense to have string_of_content to add quotes? (Maybe add quotes when missing?)The text was updated successfully, but these errors were encountered: