Metadata-Version: 2.3
Name: front-matter-parser-py
Version: 0.0.1
Summary: Front matter parser for Python
Keywords: markdown,markdown-it,lexer,parser,development
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup
Requires-Dist: markdown-it-py>=1.0.0,<4.0.0
Requires-Dist: pre-commit ; extra == "code-style"
Requires-Dist: myst-parser ; extra == "rtd"
Requires-Dist: sphinx-book-theme ; extra == "rtd"
Requires-Dist: coverage ; extra == "testing"
Requires-Dist: pytest ; extra == "testing"
Requires-Dist: pytest-cov ; extra == "testing"
Requires-Dist: pytest-regressions ; extra == "testing"
Project-URL: Documentation, https://mdit-py-plugins.readthedocs.io
Project-URL: Homepage, https://github.com/executablebooks/mdit-py-plugins
Provides-Extra: code-style
Provides-Extra: rtd
Provides-Extra: testing

# Overview

This is a simple plugin for mdit-py, a markdown parser for Python. It adds the
ability to load the front matter of a markdown file, which is a YAML block at the
beginning of the file. The front matter is parsed and stored in the `front_matter`
attribute of the `Mdit` object.


