🐛 Bug Fix
- Quoted font names in inline styles came out of the editor with double quotes (
style="font-family: "Open Sans", sans-serif"), which is how the DOM serialises them. Back ends that HTML-decode the value before storing it turned that intostyle="font-family: "Open Sans", sans-serif"— broken markup that the editor could no longer read back. The value getter now rewrites such names with single quotes (font-family: 'Open Sans', sans-serif), which survive the round trip; names that already contain an apostrophe are left untouched. Controlled by the newcleanHTML.singleQuotesInFontFamilyoption (defaulttrue). Reported by Gavin Foley (Educa, Jodit OEM).