X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/468c2e650c854ffa691afc73aa1f41ce61283cdb..114d7edc5dab67cc91565960a6e8bbc040563901:/src/wolnelektury/settings/contrib.py?ds=sidebyside diff --git a/src/wolnelektury/settings/contrib.py b/src/wolnelektury/settings/contrib.py index e7047c006..70eca9e0c 100644 --- a/src/wolnelektury/settings/contrib.py +++ b/src/wolnelektury/settings/contrib.py @@ -2,6 +2,8 @@ # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # +from fnpdjango.utils.text.textilepl import textile_pl + HONEYPOT_FIELD_NAME = 'miut' PAGINATION_INVALID_PAGE_RAISES_404 = True THUMBNAIL_QUALITY = 95 @@ -25,3 +27,7 @@ PAYPAL_CONFIG = { 'client_id': '', 'client_secret': '', } + +MARKUP_FIELD_TYPES = ( + ('textile_pl', textile_pl), +)