Magento – Double quotes change into " in Tiny MCE editor in Magento 2.x

magento2magento2.3static-contentwysiwyg

In Tiny MCE editor on a product page in M2.3, all my double quotes are changed into " after saving.
Example:

<a href="{{store direct_url=&quot;contact&quot;}}">

This breaks the links on the page.

Is it possible to avoid this in an easy way e.g. by an admin setting?
Anybody knows of an editor extension that does the job properly?

Best Answer

Double quotes inside of double quotes will result in &quot;. The most simple way to fix this, would be replacing the double quotes by single quotes. Such as

<a href="{{store direct_url='contact'}}">

will work

Related Topic