Hi,
Anyone had issue with RichText editor automatically replacing double quote " with single quote ' and vice versa, when toggling between Design and HTML mode? I have tested all options under "BUILT-IN FILTERS CONFIGURATOR" and they all switched the double quote with single quote and vice versa, which breaks the HTML5 data attribute element as the single quote formatting is important for JSON specification.
https://demos.telerik.com/aspnet-ajax/editor/examples/builtincontentfilters/defaultcs.aspx
I have attached a snippet of the code, which shows data-wb-geomap element's single quote got replaced with double quote after toggling between Design and HTML mode.
Before (HTML mode):
<div id="geomap1" class="wb-geomap position scaleline geocoder geolocation mapcontrols" data-wb-geomap='{
"tables": [{
"title": "Test",
"caption": "Test",
"id": "test",
"zoom": true,
"tab": true,
"type": "symbol"
}
}]
}'>
After (Design mode):
<div id="geomap1" class="wb-geomap position scaleline geocoder geolocation mapcontrols" data-wb-geomap="{
'tables': [{
'title': 'Test',
'caption': 'Test',
'id': 'test',
'zoom': true,
'tab': true,
'type': 'symbol'
}
}]
}'>