Metadata-Version: 2.1
Name: django-docutils
Version: 0.6.0b0
Summary: Documentation Utilities (Docutils, reStructuredText) for django.)
Home-page: https://django-docutils.git-pull.com
License: MIT
Keywords: django,docutils,reStructuredText
Author: Tony Narlock
Author-email: tony@git-pull.com
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Provides-Extra: coverage
Provides-Extra: docs
Provides-Extra: favicon
Provides-Extra: format
Provides-Extra: intersphinx
Provides-Extra: lint
Provides-Extra: test
Requires-Dist: Django (>=3.2)
Requires-Dist: bitly-api-py3; python_version >= "3"
Requires-Dist: bitly-api; python_version < "3"
Requires-Dist: django-dirtyfields (>1.3.0)
Requires-Dist: django-extensions (>=2.2.5,<3.0.0)
Requires-Dist: django-randomslugfield
Requires-Dist: django-slugify-processor
Requires-Dist: docutils
Requires-Dist: lxml
Requires-Dist: pygments (<3)
Requires-Dist: tldextract; extra == "favicon"
Requires-Dist: tqdm; extra == "favicon" or extra == "intersphinx"
Project-URL: Bug Tracker, https://github.com/tony/django-docutils/issues
Project-URL: Documentation, https://django-docutils.git-pull.com
Project-URL: Repository, https://github.com/tony/django-docutils
Description-Content-Type: text/x-rst

|pypi| |docs| |build-status| |coverage| |license|

django-docutils, docutils (reStructuredText) support for Django

Documentation
-------------

The full documentation is at https://django-docutils.git-pull.com.

Quickstart
----------

Install django-docutils:

.. code-block:: sh

    pip install django-docutils

    # if fetching favicons
    pip install django-docutils[favicon]

    # intersphinx support
    pip install django-docutils[intersphinx]

    # both
    pip install django-docutils[favicon,intersphinx]

Template filter
---------------

If you want to use the template filter, add it to your ``INSTALLED_APPS``
in your settings file:

.. code-block:: python

    INSTALLED_APPS = [ # ... your default apps,
        'django_docutils'
    ]

Then in your template:

.. code-block:: django

    {% load django_docutils %}
    {% filter restructuredtext %}
    # hey
    # how's it going
    A. hows
    B. it

    C. going
    D. today

    **hi**
    *hi*
    {% endfilter %}


Template engine (class-based view)
----------------------------------

You can also use a class-based view to render restructuredtext.

If you want to use reStructuredText as a django template engine,
``INSTALLED_APPS`` *isn't* required, instead you add this to your
``TEMPLATES`` variable in your settings:

.. code-block:: python

    TEMPLATES = [ # .. your default engines
    {
        'NAME': 'docutils',
        'BACKEND': 'django_docutils.engines.Docutils',
        'DIRS': [],
        'APP_DIRS': True,
    }]

Now django will be able to scan for .rst files and process them. In your
view:

.. code-block:: python

   from django_docutils.views import DocutilsView

   class HomeView(DocutilsView):
       template_name = 'base.html'
       rst_name = 'home.rst'

Settings
--------
.. code-block:: python

    BASED_LIB_RST = {  # Optional, automatically maps roles, directives and transformers
        'docutils': {
            'raw_enabled': True,
            'strip_comments': True,
            'initial_header_level': 2,
        },
        'roles': {
            'local': {
                'gh': 'django_docutils.lib.roles.github.github_role',
                'twitter': 'django_docutils.lib.roles.twitter.twitter_role',
                'email': 'django_docutils.lib.roles.email.email_role',
            }
        },
        'font_awesome': {  # Transformer to inject <em class="<class>"></em>
            'url_patterns': {
                r'.*github.com.*': 'fab fa-github',
                r'.*twitter.com.*': 'fab fa-twitter',
                r'.*amzn.to.*': 'fab fa-amazon',
                r'.*amazon.com.*': 'fab fa-amazon',
                r'.*news.ycombinator.com*': 'fab fa-hacker-news',
                r'.*leanpub.com.*': 'fab fa-leanpub',
                r'.*python.org.*': 'fab fa-python',
                r'.*pypi.org.*': 'fab fa-python',
                r'.*djangoproject.com.*': 'fab fa-python',
                r'.*wikipedia.org.*': 'fab fa-wikipedia',
                r'((rtfd|readthedocs).)*$': 'fab fa-books',
                r'^mailto:.*': 'fas fa-envelope',
                r'((?!mywebsite.com|localhost).)*$': 'fas fa-external-link',
            }
        },
    }

    BASED_LIB_TEXT = {  # Optional
        'uncapitalized_word_filters': ['project.my_module.my_capitalization_fn']
    }

    BASED_ADS = {  # If injecting ads
        'AMAZON_AD_CODE': """
        <script type="text/javascript">
        amzn_assoc_placement = "adunit0";
        amzn_assoc_search_bar = "true";
        amzn_assoc_tracking_id = "mytracking-20";
        amzn_assoc_search_bar_position = "bottom";
        amzn_assoc_ad_mode = "search";
        amzn_assoc_ad_type = "smart";
        amzn_assoc_marketplace = "amazon";
        amzn_assoc_region = "US";
        amzn_assoc_title = "You may be interested in";
        amzn_assoc_default_search_phrase = "{keyword}";
        amzn_assoc_default_category = "All";
        amzn_assoc_linkid = "6efef5538142e4a4031b04de66b6e804";
        </script>
        <script src="//z-na.amazon-adsystem.com/widgets/onejs?MarketPlace=US"></script>
        """,
        'AMAZON_AD_STRIP': (
            '<script src="//z-na.amazon-adsystem.com/widgets/onejs?MarketPlace=US&'
            'adInstanceId=521gc14d-d9f1-4691-8af2-a38de0d0cbad"></script>'
        ),
        'GOOGLE_AD_CODE': """
        <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
        </script>
        <ins class="adsbygoogle"
             style="display:block; text-align:center;"
             data-ad-layout="in-article"
             data-ad-format="fluid"
             data-ad-client="ca-pub-5555555555555555"
             data-ad-slot="5555555555"></ins>
        <script>
             (adsbygoogle = window.adsbygoogle || []).push({});
        </script>
        """,
    }

.. |pypi| image:: https://img.shields.io/pypi/v/django-docutils.svg
    :alt: Python Package
    :target: http://badge.fury.io/py/django-docutils

.. |docs| image:: https://github.com/tony/django-docutils/workflows/docs/badge.svg
   :alt: Docs
   :target: https://github.com/tony/django-docutils/actions?query=workflow%3A"Docs"

.. |build-status| image:: https://github.com/tony/django-docutils/workflows/tests/badge.svg
   :alt: Build Status
   :target: https://github.com/tony/django-docutils/actions?query=workflow%3A"tests"

.. |coverage| image:: https://codecov.io/gh/tony/django-docutils/branch/master/graph/badge.svg
    :alt: Code Coverage
    :target: https://codecov.io/gh/tony/django-docutils

.. |license| image:: https://img.shields.io/github/license/tony/django-docutils.svg
    :alt: License
    :target: https://github.com/tony/django-docutils/blob/master/LICENSE

