I want to add some configurations for pbckcode
I add this in confi.js file in ckeditor's folder :
config.pbckcode = {
cls : '',
highlighter : 'PRETTIFY',
modes : [ ['HTML', 'html'],['C++', 'c++'], ['CSS', 'css'], ['PHP', 'php'], ['JS', 'javascript'] ]
}
But it doesn't work .
I also tried adding this in ckeditor's option in adming page :
extraPlugins:'eqneditor,pbckcode',
config.pbckcode = { [ ['HTML', 'html'],['C++', 'c++'], ['CSS', 'css'], ['PHP', 'php'], ['JS', 'javascript'] ] },
toolbarCanCollapse:false,
removePlugins:'elementspath',
resize_enabled:false,
autogrow:false,
entities:false
What is the proper way of adding configuration in ckeditor 4.3 ?!