Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sjkingo/mezzanine2jekyll
Django management command to add support for exporting Mezzanine's blog posts to Jekyll post files
https://github.com/sjkingo/mezzanine2jekyll
blog blog-example django export jekyll mezzanine python
Last synced: 4 days ago
JSON representation
Django management command to add support for exporting Mezzanine's blog posts to Jekyll post files
- Host: GitHub
- URL: https://github.com/sjkingo/mezzanine2jekyll
- Owner: sjkingo
- License: bsd-2-clause
- Created: 2015-09-25T11:34:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-22T23:56:17.000Z (over 7 years ago)
- Last Synced: 2024-12-15T16:55:17.041Z (21 days ago)
- Topics: blog, blog-example, django, export, jekyll, mezzanine, python
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# mezzanine2jekyll
This is a Django management command to add support for exporting Mezzanine's
blog posts to Jekyll post files.## Usage
1. Install the [package](https://pypi.python.org/pypi/mezzanine2jekyll) in your virtualenv:
```
$ pip install mezzanine2jekyll
```2. Add `mezzanine2jekyll` to your `INSTALLED_APPS`:
```python
INSTALLED_APPS = (
...
"mezzanine2jekyll",
)
```3. Use the new management command to export:
```
$ python manage.py mezzanine2jekyll -h
Usage: manage.py mezzanine2jekyll [options]Export Mezzanine blog posts as Jekyll files
```