Releases: agusmakmun/django-markdown-editor
Releases · agusmakmun/django-markdown-editor
v1.2.3
- Fixed exit full screen when ESC is pressed.
v1.2.2
- Compress css, js files
v1.2.1 - upgrade draceditor to martor
- Fixed issue: #3 - Markdown widget becomes unresponsive when a model has multiple DraceditorField
v1.1.8
v1.1.7
v1.1.6
- Support translation.
- Support Fullscreen mode.
- Fixed filter users only if user
is_active=True - Support Keyboard commands for:
- Underscores, Windows/Linux:
Shift+U, Mac:Option+U Strikethrough, Windows/Linux:Shift+S, Mac:Option+S
- Underscores, Windows/Linux:
- Removed tooltip/popup of toolbar buttons, because can't handle the positions.
- Fixed json error encoding using
LazyEncoder.
v1.1.5
Added support strikethrough and underscores
DRACEDITOR_MARKDOWN_EXTENSIONS = [
....
'draceditor.extensions.del_ins', # ~~strikethrough~~ and ++underscores++
....
]
v1.1.3
- Fixed bug emoji & imgur uploader
v1.0.9
- added
upload.sh
v1.0.8
- Added global draceditor settings
# Input: string boolean, `true/false`
DRACEDITOR_ENABLE_CONFIGS' = {
'imgur': 'true', # to enable/disable imgur uploader.
'mention': 'false', # to enable/disable mention
'jquery': 'true', # to include/revoke jquery (require for admin default django)
}