Reputation: 1369
How can I define custom html tags in ckeditor.
The above thing is working. But when I execute the below code the output is null in case of custom html tag like profile tag.
var current_selected_element = editor.getSelection().getSelectedElement(); console.log(current_selected_element);
Upvotes: 2
Views: 6933
Reputation: 32510
The problem is that CKeditor's advanced content filter is filtering out your custom tags ... you're going to have to configure the ACF to accept the custom tags your plugin is creating and inserting into the DOM. There are a couple ways this can be done. The most basic would be to implement config.extraAllowedContent = 'profile'
or whatever the name of your custom markup will be. Otherwise you can work with the global CKEditor.filter
object. There's more documentation on the CKEDITOR.filter
object here.
Upvotes: 4