Metadata-Version: 2.1
Name: django-markdowns
Version: 0.1.3
Summary: Bring markdown functionality to Django.
Author-email: "J. Nathanael Philipp" <nathanael@philipp.land>
License: GPLv3+
Project-URL: Homepage, http://github.com/jnphilipp/django-markdowns
Project-URL: Bug Tracker, http://github.com/jnphilipp/django-markdowns/issues
Keywords: django,markdown
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.1
Classifier: Framework :: Django :: 4.2
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: markdown (~=3.4.3)
Requires-Dist: django (>=3.2.0)

# django-markdowns

Provides markdown functionality for Django via a template filter.

## Features:
 * Adding `md` Django template filter.
   * Add `django_markdowns` to `INSTALLED_APPS` in `settings.py`.
   * Load in template with `{% load markdowns %}`.
 * Adding `DjangoExtension` extension for markdown package.
   * use of Django URL syntax.
     ```
     [Some link](APP_NAME:VIEW_NAME|PARAMS,COMMA,SEPARATED)
     ```
