This package implements the anchor feature for CKEditor 5. It allows inserting anchor elements (ID field) into the edited content and offers the UI to create and edit them.
These instructions will get you a install this library in your CKEditor project.
This library needs CKEditor5 in order to work properly.
Add ckeditor5 anchor as dependency in package.json:
"@ckeditor/ckeditor5-anchor": "bvedad/ckeditor5-anchor",
Import package
import Anchor from '@ckeditor/ckeditor5-anchor/src/anchor';
Use it in the code
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Anchor, ... ],
toolbar: [ 'anchor', ... ],
} )
.then( ... )
.catch( ... );
- Vedad Burgić (InProd Solutions) - Initial work - bvedad
- CKEditor5 anchor feature