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
If you double quote, everything stops at the first double quote, e.g. [{
If you single quote, it stops at the first single quote, e.g. [{"title":"Tuesday
It would be nice if there was a single way, whether using " or ' in the HTML to avoid escaping issues, such that it has to fixed on the component side too.
The text was updated successfully, but these errors were encountered:
Currently in order to handle serializing JSON that might contain an apostrophe, like with #16 , it requires a two step process
So for example, using this example
'
to"
and use'
for the HTML attributes'
[{
[{"title":"Tuesday
It would be nice if there was a single way, whether using
"
or'
in the HTML to avoid escaping issues, such that it has to fixed on the component side too.The text was updated successfully, but these errors were encountered: