nshenderov / strapi-plugin-ckeditor

Integrates CKEditor 5 into your Strapi project as a fully customizable custom field. (Unofficial integration)
https://www.npmjs.com/package/@_sh/strapi-plugin-ckeditor
MIT License
95 stars 58 forks source link

I'm not sure how to install such plugin using this plugin #110

Closed ScreamZ closed 2 months ago

ScreamZ commented 1 year ago

Hi !

I'm trying to implement an internal link feature, after some investigation I figured out some plugins that might be nice candidate : https://github.com/SamhammerAG/ckeditor5-internallink-plugin

But I need to provide some arguments, which I'm not sure how to proceed with the txt file…

InlineEditor
    .create( editorElement, {
        internallink: {
            testmode: false,
            autocompleteurl: '',
            titleurl: '',
            previewurl: '',
            axiosInstance: undefined
        }
    } )
    .then( ... )
    .catch( ... );

Any help ? Thank you very much