Skip to main content

A simple Django app to provide markdown blog functionality.

Project description

=====
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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-markdown-blog-0.2.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

django_markdown_blog-0.2-py2.py3-none-any.whl (6.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page