Metadata-Version: 2.1
Name: django_markdowns
Version: 0.2.0
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 :: 4.1
Classifier: Framework :: Django :: 4.2
Classifier: Programming Language :: Python
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.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: markdown ~=3.6.0
Requires-Dist: django >=3.2.0

# django-markdowns

Provides markdown functionality for Django via a template filter.

![Tests](https://github.com/jnphilipp/django-markdowns/actions/workflows/tests.yml/badge.svg)
[![pypi Version](https://img.shields.io/pypi/v/django-markdowns.svg?logo=pypi&logoColor=white)](https://pypi.org/project/django-markdowns/)

## 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)
     ```
 * Adding `SubSupExtension` extionsion for markdown package.
   * use `~subscript~` to get `<sub>subscript</sub>`
   * use `^superscript^` to get `<sup>superscript</sup>`
