We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49f3a9a commit 5ea53fbCopy full SHA for 5ea53fb
README.md
@@ -57,8 +57,10 @@ class Post(models.Model):
57
<title>Document</title>
58
</head>
59
<body>
60
- {% load editorjs %} {{ post.body_default }} {{ post.body_editorjs |
61
- editorjs}} {{ post.body_editorjs_text | editorjs}}
+ {% load editorjs %}
+ {{ post.body_default }}
62
+ {{ post.body_editorjs | editorjs}}
63
+ {{ post.body_editorjs_text | editorjs}}
64
</body>
65
</html>
66
```
example/example/settings.py
@@ -141,4 +141,4 @@
141
EDITORJS_VERSION = '2.22.1'
142
# EDITORJS_IMAGE_NAME_ORIGINAL = True
143
# EDITORJS_IMAGE_UPLOAD_PATH_DATE = None
144
-# EDITORJS_IMAGE_NAME = lambda filename, **_: f"{filename}_12345"
+# EDITORJS_IMAGE_NAME = lambda filename, **_: f"{filename}_12345"
0 commit comments