Metadata-Version: 2.0
Name: django-markdown-blog
Version: 0.4
Summary: A simple Django app to provide markdown blog functionality.
Home-page: UNKNOWN
Author: Kevin Mann
Author-email: kevinrmann@gmail.com
License: BSD License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: Django (>=1.9)
Requires-Dist: awesome-slugify (>=1.6.5)
Requires-Dist: django-autoslug (>=1.9.3)
Requires-Dist: django-imagekit (>=3.3)
Requires-Dist: django-markdown-app (>=0.9.0)

=====
Django Markdown Blog
=====

Django Markdown Blog is a simple Django app that will give any Django project a blog that works with markdown.

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "django_markdown" and "blog" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'django_markdown',
        'blog'
    ]

2. Include the blog URLconf and django_markdown URLconf in your project urls.py like this::

    url(r'^markdown/', include( 'django_markdown.urls')),
    url(r'^blog/', include('blog.urls', namespace='blog')),

3. Run `python manage.py migrate` to create the blog models.

4. Start the development server and visit http://localhost:8000/admin/
   to create your first blog post (you'll need the Admin app enabled).

5. Visit http://localhost:8000/blog/ to view your latest blog posts.


