I just tried to use code like below:
<editor init-text="String "Test""></editor>
But DOM breaks because of qoutes in given string.
How to avoid that problem?
I just tried to use code like below:
<editor init-text="String "Test""></editor>
But DOM breaks because of qoutes in given string.
How to avoid that problem?
Escape the quotes with a \
<editor init-text="String \"Test\""></editor>
Or mix single '
and double "
quotes
<editor init-text='String "Test"'></editor>