-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Labels
Description
For instance, let’s say I want to inline a js script, e.g.:
new Promise((r, f) => { ... })
Currently, if I do the naive thing:
Script{ "new Promise((r, f) => { ... })" }
the output will be
<script>new Promise((r, f) => { ... })</script>
which is not parsed properly.
PS: I’m well aware this should probably be avoided, but it is very convenient to do when testing stuff…