Skip to content

Releases: agusmakmun/django-markdown-editor

v1.1.6

28 Jan 19:56
Compare
Choose a tag to compare
  1. Support translation.
  2. Support Fullscreen mode.
  3. Fixed filter users only if user is_active=True
  4. Support Keyboard commands for:
    • Underscores, Windows/Linux: Shift+U, Mac: Option+U
    • Strikethrough, Windows/Linux: Shift+S, Mac: Option+S
  5. Removed tooltip/popup of toolbar buttons, because can't handle the positions.
  6. Fixed json error encoding using LazyEncoder.

v1.1.5

13 Jan 01:21
Compare
Choose a tag to compare

Added support strikethrough and underscores

DRACEDITOR_MARKDOWN_EXTENSIONS = [
    ....
    'draceditor.extensions.del_ins', # ~~strikethrough~~ and ++underscores++
    ....
]

v1.1.3

05 Jan 17:10
Compare
Choose a tag to compare
  • Fixed bug emoji & imgur uploader

v1.0.9

02 Jan 17:17
Compare
Choose a tag to compare
  • added upload.sh

v1.0.8

02 Jan 13:43
Compare
Choose a tag to compare
  • 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

01 Jan 21:18
Compare
Choose a tag to compare
  • added feature dractags (templatetags) & demo.
{% load dractags %}
{{ field_name|safe_markdown }}

# example
{{ post.description|safe_markdown }}

v1.0.6

01 Jan 16:50
Compare
Choose a tag to compare
  • upgraded jquery
  • minify ext-language_tools.js
  • added notes

v1.0.5

01 Jan 12:37
Compare
Choose a tag to compare
  • Update installation
  • Removed css atwho in widgets.py

v1.0.4

01 Jan 04:57
Compare
Choose a tag to compare
  • 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

30 Dec 13:09
Compare
Choose a tag to compare
  • 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