Metadata-Version: 2.4
Name: minchin.md-it.marked
Version: 1.0.0
Summary: Marked, for Markdown-IT-py
Author-email: William Minchin <w_minchin@hotmail.com>
Maintainer-email: William Minchin <w_minchin@hotmail.com>
License: AGPL-3.0
Project-URL: Bug Tracker, https://github.com/MinchinWeb/minchin.md-it.marked/issues
Project-URL: Repository, https://github.com/MinchinWeb/minchin.md-it.marked
Project-URL: Changelog, https://github.com/MinchinWeb/minchin.md-it.marked/blob/master/CHANGELOG.rst
Keywords: commonmark,markdown,plugin,marked,mark
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Intended Audience :: End Users/Desktop
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing :: Markup :: Markdown
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Requires-Dist: markdown-it-py
Provides-Extra: dev
Requires-Dist: pip-tools; extra == "dev"
Requires-Dist: minchin.releaser>=0.9.5; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Dynamic: license-file

Marked for Markdown-IT-Py
=========================

This is a plugin for the Python implementation of
`Markdown-IT <https://github.com/executablebooks/markdown-it-py>`_ (a CommonMark
parser) that provides marked text (``<mark>``) via double equals (``==``).

Example usage::

    >>> from markdown_it import MarkdownIt
    >>> from minchin.md_it.marked import marked_plugin
    >>> md = MarkdownIt().use(marked_plugin)
    >>> md.render("I ==marked== this")
    '<p>I <mark>marked</mark> this</p>\\n'
    >>> md.render("this==text\\\\ has\\\\ spaces==")
    '<p>this<mark>text\\ has\\ spaces</mark></p>\\n'

Tests can be run using ``pytest``.

This is ported from hasgeek's Funnel, under the AGPL-3.0 license.
