├── .git-blame-ignore-revs ├── .github └── workflows │ ├── installation.yml │ ├── linting.yml │ └── push.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── django_markup ├── __init__.py ├── defaults.py ├── fields.py ├── filter │ ├── __init__.py │ ├── linebreaks_filter.py │ ├── markdown_filter.py │ ├── none_filter.py │ ├── rst_filter.py │ ├── smartypants_filter.py │ ├── textile_filter.py │ └── widont_filter.py ├── markup.py ├── templatetags │ ├── __init__.py │ └── markup_tags.py └── tests │ ├── __init__.py │ ├── files │ ├── rst_header.txt │ ├── rst_header_expected.txt │ ├── rst_raw.txt │ ├── rst_with_pygments.txt │ └── rst_with_pygments_expected.txt │ ├── markup_strings.py │ ├── settings.py │ ├── templates │ ├── test_templatetag.html │ └── test_templatetag_filterwrapper.html │ ├── test_custom_filter.py │ ├── test_filter.py │ └── test_templatetag.py ├── docs ├── _static │ ├── basic.css │ ├── default.css │ └── pygments.css ├── bundled_filter │ ├── linebreaks.rst │ ├── markdown.rst │ ├── none.rst │ ├── rst.rst │ ├── smartypants.rst │ ├── textile.rst │ └── widont.rst ├── conf.py ├── configuration.rst ├── filter.rst ├── filter_settings.rst ├── formatter.rst ├── index.rst ├── installation.rst ├── usage_models.rst ├── usage_python.rst └── usage_templates.rst ├── noxfile.py └── pyproject.toml /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Black the entire project 2 | af5c4b8d50ca9aa512e1cf6af5bab4cbaaa2898a 3 | -------------------------------------------------------------------------------- /.github/workflows/installation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/.github/workflows/installation.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/README.md -------------------------------------------------------------------------------- /django_markup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_markup/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/defaults.py -------------------------------------------------------------------------------- /django_markup/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/fields.py -------------------------------------------------------------------------------- /django_markup/filter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/filter/__init__.py -------------------------------------------------------------------------------- /django_markup/filter/linebreaks_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/filter/linebreaks_filter.py -------------------------------------------------------------------------------- /django_markup/filter/markdown_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/filter/markdown_filter.py -------------------------------------------------------------------------------- /django_markup/filter/none_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/filter/none_filter.py -------------------------------------------------------------------------------- /django_markup/filter/rst_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/filter/rst_filter.py -------------------------------------------------------------------------------- /django_markup/filter/smartypants_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/filter/smartypants_filter.py -------------------------------------------------------------------------------- /django_markup/filter/textile_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/filter/textile_filter.py -------------------------------------------------------------------------------- /django_markup/filter/widont_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/filter/widont_filter.py -------------------------------------------------------------------------------- /django_markup/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/markup.py -------------------------------------------------------------------------------- /django_markup/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_markup/templatetags/markup_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/templatetags/markup_tags.py -------------------------------------------------------------------------------- /django_markup/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_markup/tests/files/rst_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/files/rst_header.txt -------------------------------------------------------------------------------- /django_markup/tests/files/rst_header_expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/files/rst_header_expected.txt -------------------------------------------------------------------------------- /django_markup/tests/files/rst_raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/files/rst_raw.txt -------------------------------------------------------------------------------- /django_markup/tests/files/rst_with_pygments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/files/rst_with_pygments.txt -------------------------------------------------------------------------------- /django_markup/tests/files/rst_with_pygments_expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/files/rst_with_pygments_expected.txt -------------------------------------------------------------------------------- /django_markup/tests/markup_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/markup_strings.py -------------------------------------------------------------------------------- /django_markup/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/settings.py -------------------------------------------------------------------------------- /django_markup/tests/templates/test_templatetag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/templates/test_templatetag.html -------------------------------------------------------------------------------- /django_markup/tests/templates/test_templatetag_filterwrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/templates/test_templatetag_filterwrapper.html -------------------------------------------------------------------------------- /django_markup/tests/test_custom_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/test_custom_filter.py -------------------------------------------------------------------------------- /django_markup/tests/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/test_filter.py -------------------------------------------------------------------------------- /django_markup/tests/test_templatetag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/django_markup/tests/test_templatetag.py -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/_static/default.css -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/bundled_filter/linebreaks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/bundled_filter/linebreaks.rst -------------------------------------------------------------------------------- /docs/bundled_filter/markdown.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/bundled_filter/markdown.rst -------------------------------------------------------------------------------- /docs/bundled_filter/none.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/bundled_filter/none.rst -------------------------------------------------------------------------------- /docs/bundled_filter/rst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/bundled_filter/rst.rst -------------------------------------------------------------------------------- /docs/bundled_filter/smartypants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/bundled_filter/smartypants.rst -------------------------------------------------------------------------------- /docs/bundled_filter/textile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/bundled_filter/textile.rst -------------------------------------------------------------------------------- /docs/bundled_filter/widont.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/bundled_filter/widont.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/filter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/filter.rst -------------------------------------------------------------------------------- /docs/filter_settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/filter_settings.rst -------------------------------------------------------------------------------- /docs/formatter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/formatter.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/usage_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/usage_models.rst -------------------------------------------------------------------------------- /docs/usage_python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/usage_python.rst -------------------------------------------------------------------------------- /docs/usage_templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/docs/usage_templates.rst -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartTC/django-markup/HEAD/pyproject.toml --------------------------------------------------------------------------------