1.1.4 • Published 3 years ago

ckeditor5-bookmark v1.1.4

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

ckeditor5-bookmark

ckeditor5-bookmark is a 3. party free bookmark plugin for CKEditor 5. It solves the problem of creating bookmarks, , in bigger documents. You can then use the offical CKEditor 5 Link plugin to create links to your bookmarks : Bookmark Name

image

There is an in-dept tutorial, how to build a CKEditor 5 bookmark plugin, based on the ckeditor5-bookmark plugin here : CKBookmark - a CKEditor 5 plugin tutorial.

Below is a short usage documentation.

1 : In your CKEditor 5 build file ADD a reference to ckeditor5-bookmark:

// app.js

import ClassicEditorBase from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
import Autoformat from '@ckeditor/ckeditor5-autoformat/src/autoformat';
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
import BlockQuote from '@ckeditor/ckeditor5-block-quote/src/blockquote';
import Bookmark from 'ckeditor5-bookmark'; // ADD THIS
// ...
 
export default class ClassicEditor extends ClassicEditorBase { }
 
ClassicEditor.builtinPlugins = [
   Essentials,
   Autoformat,
   Bold,
   Italic,
   Bookmark // ADD THIS
   // ...
]