flask-ckeditor icon indicating copy to clipboard operation
flask-ckeditor copied to clipboard

CKEditor integration for Flask, including image upload, code syntax highlight, and more.

Results 19 flask-ckeditor issues
Sort by recently updated
recently updated
newest added

Hello, I build CKEditor5 in this RP. The user can use ckeditor4 or ckeditor5 by choosing different CKEditor class `app = CKEditor4(app) #for ckeditor4` `app = CKEditor5(app) #for ckeditor5` and...

ckeditor5

Since CKEditor 5 is released. Is there any plan to it be implemented on Flask CKEditor?

Would it be possible to have something like : `app.config['CKEDITOR_CONTENTS_CSS'] = ['/static/bootstrap/css/bootstrap.css','/static/bootstrap/css/theme.css','/static/styles.css']` instead of having to do something like `{{ ckeditor.config(name='text', custom_config="contentsCss: ['/static/bootstrap/css/bootstrap.css','/static/bootstrap/css/theme.css','/static/styles.css']") }}` in every forms ?

I'm trying to use CKEditor in a Flask-Admin app, but where the field I need is in an inline model. In these cases, the Admin interface can generate any number...

enhancement

Hi, Thank you for this plugin. It helped me a lot with the project that i am working on. I am able to upload images but can't make the file...

Hi, I've met some problems using self-host ckeditor.js file with ckeditor.load(). Usually, FE engineers usually uses "defer" for js script loading. I've tried to load ckeditor.js with and ckeditor.load("..."), there...

Where should the CKEditor standard bundle go? The only way I've gotten this Flask extension to work (without inserting my own \s and \s into HTML) is by editing the...