CkEditor use <b> tags instead <strong> -
i use newest version of ckeditor until now. want, when press "b" button, put selected text between tags <b>
, </b>
, not <strong>...</strong>
default. how solve it?
use config.corestyles_bold
option.
for example:
config.corestyles_bold = { element: 'b', overrides: 'strong' };
Comments
Post a Comment