Results 1 comments of smnsmw

You also can just unescape the string before use it in the editor ``` const unescapeString = (str: string): string => { const newString = new DOMParser().parseFromString(str ?? '', 'text/html').documentElement.textContent;...