I've installed the CKEditor plugin in my test Wordpress, but, I already have
another plugins like GoogleMaps, witch requires to specify this text in the
HTML for example:
[map address="Calle Hermosilla, 48 28001 Madrid" z="17" marker="yes"
infowindow="Academia Liébana" w="600" h="400"]
CK Editor, when I save is converting " to " for example. That means than
my plugin of google maps doesn't work.
There is some way to tell ckEditor, don't parse this line, or keep this line
as it is?
To take the change to php to parse correctly the line before generate the
html.
P.D.: Encapsulate with <!-- --> is not a valid option.
Thanks
another plugins like GoogleMaps, witch requires to specify this text in the
HTML for example:
[map address="Calle Hermosilla, 48 28001 Madrid" z="17" marker="yes"
infowindow="Academia Liébana" w="600" h="400"]
CK Editor, when I save is converting " to " for example. That means than
my plugin of google maps doesn't work.
There is some way to tell ckEditor, don't parse this line, or keep this line
as it is?
To take the change to php to parse correctly the line before generate the
html.
P.D.: Encapsulate with <!-- --> is not a valid option.
Thanks
Re: Avoid Format part of Code
you can add config.entities = false;
to ckeditor.config.js file (in wp-content\plugins\ckeditor-for-wordpress directory). This options turn off changing special characters like " or ' to its html entities.