Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
django-markdown-blog
Advanced tools
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.
Add "django_markdown" and "blog" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [ ... 'django_markdown', 'blog' ]
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')),
Run python manage.py migrate
to create the blog models.
Start the development server and visit http://localhost:8000/admin/ to create your first blog post (you'll need the Admin app enabled).
Visit http://localhost:8000/blog/ to view your latest blog posts.
FAQs
A simple Django app to provide markdown blog functionality.
We found that django-markdown-blog demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.