django-editorjs-fields
django-editorjs-fields copied to clipboard
Django plugin for using Editor.js
I am not 100% sure but it seems that you need to keep keys in this dict `EDITORJS_DEFAULT_CONFIG_TOOLS` lowercase. For example: `'list': {'class': 'List', 'inlineToolbar': True},` If you keep them...
When deleting a post that contains images, it does not clean up the uploads associated with the post. It leaves the files In storage instead.
This problem occurs in Django administration and in frontend forms with dynamically addable inlines.
Hi, I want to change the default text "Type text..." but for some reason `placeholder` argument for EditorJsJSONField field doesn't change anything. My code: ``` class Page(models.Model): ... content =...
Hello, I'm trying to use your super field :-) But i have a prob on the front, when i want to display content of the editojs_field My index.html content the...
Test with ``` content ``` maybe do an "escape" in editorjs.py ? ``` from django.utils.html import escape def generate_code(data): code = escape(data.get('code')) return f'{code}' ```
Hi, I am interested in using editorjs-drag-drop (https://github.com/kommitters/editorjs-drag-drop) as a plugin in django-editorjs-fields my application, but am having difficulties enabling it. Simply adding it to the list of plugins does...
In latest django versions event trigger has been updated. This PR adds support for dynamical formset row additions.
Hi, How can i use editorjs-codeflask