djangocms-mdeditor is a ready-for-use addon for django CMS text editor using Martor as markdown-enabled text editor. The addon provides simple text editing using markdown, or the WYSIWYG-style setup provided by Martor (supports Bootstrap and Semantic-UI).
djangocms-mdeditor
is only tested with the following requirements.
Django>=3.2
Martor>=1.6.4
django-cms>=3.9
djangocms-mdeditor
is available directly from PyPi.
- Install the package into your project via e.g.
pip install djangocms-mdeditor
. - Add
djangocms-mdeditor
and its requirementmartor
to yourINSTALLED_APPS
, similar to:
# settings.py
INSTALLED_APPS = [
...
'djangocms-mdeditor',
'martor',
]
- To be able to use the editors preview-function and more, you need to add the following to your
urls.py
.
Be sure to place it before thecms.urls
-include:
urlpatterns = [
...
re_path(r'martor/', include('martor.urls')),
re_path(r'^', include('cms.urls')),
]
- Perform a database migration with
python manage.py migrate djangocms-mdeditor
. - If you don't have automatic static-collection configured for deployments, then remember to perform a
python manage.py collectstatic
.
For extra settings regarding the editor - please see the Martor project.
The release history / changelog is listed in the CHANGES.md
-file.
CHANGES
This is an open-source project. We'll be delighted to receive your feedback in the form of bug reports, bug fixes and new features in the form of issues and pull requests. These can be contributed on the projects GitHub-page.
- Fork the repository on GitHub.
- Make a new branch from the
main
-branch (git checkout -b feature/fooBar
). - And commit your changes to it (
git commit -am 'Add some fooBar'
). - WIP (install dev-requirements with pipenv and run tests)
- Create a Pull Request with your contribution.
WIP - contribution guidelines / code-of-conduct?
The djangocms-mdeditor project was started and developed by Danni Randeris in 2021.
Distributed under the MIT license. See LICENSE
for more information.