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.
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
Built Distribution
Close
Hashes for django_markdown_blog-0.4-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 901cd1f14240a13a42b8b772b8f679ac6452b754b700a5d67581c47979d4c318 |
|
MD5 | da2a20b8960903e65c30f5f0a64bf4d0 |
|
BLAKE2b-256 | 7ec84d8d914e48ad3840a00427a292430deda5860ddd87a3fa9727d8f92f0dc0 |