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
File details
Details for the file django-markdown-blog-0.4.tar.gz
.
File metadata
- Download URL: django-markdown-blog-0.4.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
df37fd19cf925161268a967ba0b0e83044fd810c20fe2b1e3741281c422b37fd
|
|
MD5 |
3867f1e991502306ff26183b3afa4baf
|
|
BLAKE2b-256 |
99b91299ebbf4ff3624ebd0eefdd4546b6aa9a8fc782b26f267b6a8d3d9e0af1
|
File details
Details for the file django_markdown_blog-0.4-py2.py3-none-any.whl
.
File metadata
- Download URL: django_markdown_blog-0.4-py2.py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
901cd1f14240a13a42b8b772b8f679ac6452b754b700a5d67581c47979d4c318
|
|
MD5 |
da2a20b8960903e65c30f5f0a64bf4d0
|
|
BLAKE2b-256 |
7ec84d8d914e48ad3840a00427a292430deda5860ddd87a3fa9727d8f92f0dc0
|