Releases: agusmakmun/django-markdown-editor
Releases · agusmakmun/django-markdown-editor
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)
}
v1.0.7
- added feature
dractags
(templatetags) & demo.
{% load dractags %}
{{ field_name|safe_markdown }}
# example
{{ post.description|safe_markdown }}
v1.0.6
- upgraded jquery
- minify
ext-language_tools.js
- added notes
v1.0.5
- Update installation
- Removed css atwho in
widgets.py
v1.0.4
- Removed marked js
- Integrated the preview with python markdown
- Fixed direct mention
- Fixed draceditor urls path
- Removed
DRACEDITOR_EDITOR_OPTIONS
- Fixed python markdown extensions
- Added buttons toggle in toolbar
- Removed css atwho
v1.0.2
- Integrated with Ace Editor
- Integrated with (Semantic-UI](http://semantic-ui.com)
- Live Preview
- Upload Image to imgur.com (via API)
- Emoji
:emoji_name:
- Direct Mention users (not yet) -
@[username]
- Highlight
pre
- Django Admin support
- Toolbar Buttons