Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

🙌 Awesome Django Markdown Editor, supported for Bootstrap & Semantic-UI

License

NotificationsYou must be signed in to change notification settings

agusmakmun/django-markdown-editor

Repository files navigation

licensepython versiondjango versionbuildblack

📖Documentation:https://django-markdown-editor.readthedocs.io

Martor is a Markdown Editor plugin for Django, supported forBootstrap &Semantic-UI.

Features

  • Live Preview
  • Integrated withAce Editor
  • Supported withBootstrap andSemantic-UI
  • Supported Multiple Fieldsfixed this issue
  • Upload Images to imgur.com(via API) andcustom uploader
  • Direct Mention users@[username] -(requires user to logged in).
  • Supports embed/iframe video from (Youtube, Vimeo, Dailymotion, Yahoo, Veoh, & Metacafe)
  • Spellchecking (only supports US English at this time)
  • Emoji:emoji_name: + Cheat sheets
  • Martor Commands Reference
  • Supports Django Admin
  • Toolbar Buttons
  • Highlightpre
  • Custom ID Attributes (Add custom IDs to any text element using{#custom-id} syntax, e.g.,# Heading1 {#my-h1-id}, for easy linking and navigation.

Preview

editor

preview

Requirements

  • Django>=3.2
  • Markdown>=3.0
  • requests>=2.12.4
  • bleach

Installation

Martor is available directly fromPyPI:

1. Installing the package.

$ pip install martor

2. Don't forget to add'martor' to your'INSTALLED_APPS' setting(without migrations).

# settings.pyINSTALLED_APPS= [    ....'martor',]

3. Add url pattern to yoururls.py.

# urls.pyurlpatterns= [    ...path('martor/',include('martor.urls')),]

4. Collect martor's static files in yourSTATIC_ROOT folder.

./manage.py collectstatic

Setting Configurationssettings.py

Please register your application athttps://api.imgur.com/oauth2/addclientto getIMGUR_CLIENT_ID andIMGUR_API_KEY.

# Choices are: "semantic", "bootstrap"MARTOR_THEME='bootstrap'# Global martor settings# Input: string boolean, `true/false`MARTOR_ENABLE_CONFIGS= {'emoji':'true',# to enable/disable emoji icons.'imgur':'true',# to enable/disable imgur/custom uploader.'mention':'false',# to enable/disable mention'jquery':'true',# to include/revoke jquery (require for admin default django)'living':'false',# to enable/disable live updates in preview'spellcheck':'false',# to enable/disable spellcheck in form textareas'hljs':'true',# to enable/disable hljs highlighting in preview}# To show the toolbar buttonsMARTOR_TOOLBAR_BUTTONS= ['bold','italic','horizontal','heading','pre-code','blockquote','unordered-list','ordered-list','link','image-link','image-upload','emoji','direct-mention','toggle-maximize','help']# To setup the martor editor with title label or not (default is False)MARTOR_ENABLE_LABEL=False# Disable admin style when using custom admin interface e.g django-grappelli (default is True)MARTOR_ENABLE_ADMIN_CSS=True# Imgur API KeysMARTOR_IMGUR_CLIENT_ID='your-client-id'MARTOR_IMGUR_API_KEY='your-api-key'# MarkdownifyMARTOR_MARKDOWNIFY_FUNCTION='martor.utils.markdownify'# defaultMARTOR_MARKDOWNIFY_URL='/martor/markdownify/'# default# Delay in milliseconds to update editor preview when in living mode.MARTOR_MARKDOWNIFY_TIMEOUT=0# update the preview instantly# or:MARTOR_MARKDOWNIFY_TIMEOUT=1000# default# Markdown extensions (default)MARTOR_MARKDOWN_EXTENSIONS= ['markdown.extensions.extra','markdown.extensions.nl2br','markdown.extensions.smarty','markdown.extensions.fenced_code','markdown.extensions.sane_lists',# Custom markdown extensions.'martor.extensions.urlize','martor.extensions.del_ins',# ~~strikethrough~~ and ++underscores++'martor.extensions.mention',# to parse markdown mention'martor.extensions.emoji',# to parse markdown emoji'martor.extensions.mdx_video',# to parse embed/iframe video'martor.extensions.escape_html',# to handle the XSS vulnerabilities"martor.extensions.mdx_add_id",# to parse id like {#this_is_id}]# Markdown Extensions ConfigsMARTOR_MARKDOWN_EXTENSION_CONFIGS= {}# Markdown urlsMARTOR_UPLOAD_URL=''# Completely disable the endpoint# or:MARTOR_UPLOAD_URL='/martor/uploader/'# defaultMARTOR_SEARCH_USERS_URL=''# Completely disables the endpoint# or:MARTOR_SEARCH_USERS_URL='/martor/search-user/'# default# Markdown Extensions# MARTOR_MARKDOWN_BASE_EMOJI_URL = 'https://www.webfx.com/tools/emoji-cheat-sheet/graphics/emojis/'     # from webfxMARTOR_MARKDOWN_BASE_EMOJI_URL='https://github.githubassets.com/images/icons/emoji/'# default from github# or:MARTOR_MARKDOWN_BASE_EMOJI_URL=''# Completely disables the endpointMARTOR_MARKDOWN_BASE_MENTION_URL='https://python.web.id/author/'# please change this to your domain# If you need to use your own themed "bootstrap" or "semantic ui" dependency# replace the values with the file in your static files dirMARTOR_ALTERNATIVE_JS_FILE_THEME="semantic-themed/semantic.min.js"# default NoneMARTOR_ALTERNATIVE_CSS_FILE_THEME="semantic-themed/semantic.min.css"# default NoneMARTOR_ALTERNATIVE_JQUERY_JS_FILE="jquery/dist/jquery.min.js"# default None# URL schemes that are allowed within linksALLOWED_URL_SCHEMES= ["file","ftp","ftps","http","https","irc","mailto","sftp","ssh","tel","telnet","tftp","vnc","xmpp",]# https://gist.github.com/mrmrs/7650266ALLOWED_HTML_TAGS= ["a","abbr","b","blockquote","br","cite","code","command","dd","del","dl","dt","em","fieldset","h1","h2","h3","h4","h5","h6","hr","i","iframe","img","input","ins","kbd","label","legend","li","ol","optgroup","option","p","pre","small","span","strong","sub","sup","table","tbody","td","tfoot","th","thead","tr","u","ul"]# https://github.com/decal/werdlists/blob/master/html-words/html-attributes-list.txtALLOWED_HTML_ATTRIBUTES= ["alt","class","color","colspan","datetime",# "data","height","href","id","name","reversed","rowspan","scope","src","style","title","type","width"]

Check this setting is not set else csrf will not be sent over ajax calls:

CSRF_COOKIE_HTTPONLY=False

Usage

Model

fromdjango.dbimportmodelsfrommartor.modelsimportMartorFieldclassPost(models.Model):description=MartorField()

Form

fromdjangoimportformsfrommartor.fieldsimportMartorFormFieldclassPostForm(forms.Form):description=MartorFormField()

Admin

fromdjango.dbimportmodelsfromdjango.contribimportadminfrommartor.widgetsimportAdminMartorWidgetfromyourapp.modelsimportYourModelclassYourModelAdmin(admin.ModelAdmin):formfield_overrides= {models.TextField: {'widget':AdminMartorWidget},    }admin.site.register(YourModel,YourModelAdmin)

Template Renderer

Simply safely parse markdown content as html output by loading templatetags frommartor/templatetags/martortags.py.

{% load martortags %}{{ field_name|safe_markdown }}# example{{ post.description|safe_markdown }}

Don't miss to include the required css & js files before use.You can take a look at this foldermartor_demo/app/templates for more details.The below example is a one of the way to implement it when you choose theMARTOR_THEME = 'bootstrap':

{% extends "bootstrap/base.html" %}{% load static %}{% load martortags %}{% block css %}<linkhref="{% static 'plugins/css/ace.min.css' %}"type="text/css"media="all"rel="stylesheet"/><linkhref="{% static 'martor/css/martor.bootstrap.min.css' %}"type="text/css"media="all"rel="stylesheet"/>{% endblock %}{% block content %}<divclass="martor-preview"><h1>Title: {{ post.title }}</h1><p><b>Description:</b></p><hr/>    {{ post.description|safe_markdown }}</div>{% endblock %}{% block js %}<scripttype="text/javascript"src="{% static 'plugins/js/highlight.min.js' %}"></script><script>$('.martor-preview pre').each(function(i,block){hljs.highlightBlock(block);});</script>{% endblock %}

Template Editor Form

Different withTemplate Renderer, theTemplate Editor Form have more css & javascript dependencies.

{% extends "bootstrap/base.html" %}{% load static %}{% block css %}<linkhref="{% static 'plugins/css/ace.min.css' %}"type="text/css"media="all"rel="stylesheet"/><linkhref="{% static 'martor/css/martor.bootstrap.min.css' %}"type="text/css"media="all"rel="stylesheet"/>{% endblock %}{% block content %}<formclass="form"method="post">{% csrf_token %}<divclass="form-group">      {{ form.title }}</div><divclass="form-group">      {{ form.description }}</div><divclass="form-group"><buttonclass="btn btn-success"><iclass="save icon"></i> Save Post</button></div></form>{% endblock %}{% block js %}<scripttype="text/javascript"src="{% static 'plugins/js/ace.js' %}"></script><scripttype="text/javascript"src="{% static 'plugins/js/mode-markdown.js' %}"></script><scripttype="text/javascript"src="{% static 'plugins/js/ext-language_tools.js' %}"></script><scripttype="text/javascript"src="{% static 'plugins/js/theme-github.js' %}"></script><scripttype="text/javascript"src="{% static 'plugins/js/typo.js' %}"></script><scripttype="text/javascript"src="{% static 'plugins/js/spellcheck.js' %}"></script><scripttype="text/javascript"src="{% static 'plugins/js/highlight.min.js' %}"></script><scripttype="text/javascript"src="{% static 'plugins/js/emojis.min.js' %}"></script><scripttype="text/javascript"src="{% static 'martor/js/martor.bootstrap.min.js' %}"></script>{% endblock %}

Custom Uploader

If you want to save the images uploaded to your storage,Martor also provides a way to handle this. Please checkout thisWIKI

Test Martor from this Repository

Assuming you are already setup with a virtual environment (virtualenv):

$ git clone https://github.com/agusmakmun/django-markdown-editor.git$ cd django-markdown-editor/ && pip install -e .$ cd martor_demo/$ python manage.py makemigrations && python manage.py migrate$ python manage.py runserver

Checkout athttp://127.0.0.1:8000/simple-form/ on your browser.

Documentation

Complete documentation is available online at:https://django-markdown-editor.readthedocs.io/

Running Documentation Locally

To build and view the documentation locally:

1. Clone the repository and set up your environment:

$ git clone https://github.com/agusmakmun/django-markdown-editor.git$ cd django-markdown-editor/$ python -m venv venv$ source venv/bin/activate  # On Windows: venv\Scripts\activate

2. Install documentation dependencies:

$ pip install -r docs/requirements.txt

3. Build the documentation:

$ cd docs/$ sphinx-build -b html . _build/html

Or using the included Makefile:

$ cd docs/$ make html

4. Open the documentation in your browser:

$ open _build/html/index.html  # On macOS# Or on Linux/Windows, navigate to docs/_build/html/index.html

Alternatively, serve the documentation with a local HTTP server:

$ make serve# Then open http://localhost:8000 in your browser

The documentation includes:

  • Installation and quickstart guides
  • Complete configuration reference
  • Usage examples for models, forms, widgets, and admin
  • API documentation
  • Troubleshooting and FAQ

Contributing to Documentation

The documentation is built withSphinx and uses reStructuredText format. To contribute:

  1. Edit the.rst files in thedocs/ directory
  2. Build the docs locally to test your changes
  3. Submit a pull request with your improvements

Martor Commands Reference

command reference

Notes

Martor was inspired by these great projects:django-markdownx,Python Markdown andOnline reStructuredText editor.

Sponsor this project

  •  

Packages

No packages published

Contributors38


[8]ページ先頭

©2009-2025 Movatter.jp