Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nvictus/django-stackedit
Fork of the StackEdit Markdown Editor into a Django app
https://github.com/nvictus/django-stackedit
Last synced: 2 months ago
JSON representation
Fork of the StackEdit Markdown Editor into a Django app
- Host: GitHub
- URL: https://github.com/nvictus/django-stackedit
- Owner: nvictus
- License: other
- Created: 2013-12-06T07:03:17.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-24T15:50:30.000Z (over 9 years ago)
- Last Synced: 2024-10-03T12:17:43.339Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 8.18 MB
- Stars: 9
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
Django StackEdit
================Fork of Benoit Schweblin's [StackEdit](https://github.com/benweet/stackedit) ported from Node.js to Django.
Quick start
-----------1) Add "stackedit" to your INSTALLED_APPS setting like this:
```
INSTALLED_APPS = (
...
'stackedit',
)
```2) Include the stackedit URLconf in your project urls.py like this:
```
url(r'^editor/', include('stackedit.urls')),
```Assumes that ``STATIC_URL`` settings variable is set appropriately. You may have to do ``python manage.py collectstatic`` if running with ``DEBUG = False``.
Development
-----------
Static resources are minified (``static/stackedit/res-min/``) and used by default. For development, un-minified javascripts are stored in ``static/stackedit/res`` and are served instead by using ``http://.../?debug``. However, you will need to install the missing bower packages and other dependencies for this to work. See developer-guide in the docs.