CKEditor: Adding source editing button #685
-
How do I add the source edit button on the ckeditor navbar. import { SourceEditing } from '@ckeditor/ckeditor5-source-editing';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ SourceEditing, /* ... */ ],
toolbar: [ 'sourceEditing', /* ... */ ]
} )
.then( /* ... */ )
.catch( /* ... */ ); Is there a way to do this in backpack? Thanks, Rob |
Beta Was this translation helpful? Give feedback.
Answered by
karandatwani92
Sep 24, 2023
Replies: 1 comment 1 reply
-
To add more plugins to CKEditor follow the guide here |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
SugarShaker
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To add more plugins to CKEditor follow the guide here