blob: 6f2cc8482b866de5e839af2b2f4ab0be5fe3420c (
plain)
1
2
3
4
5
6
|
"""A module for compatibility with the docutils>=0.17 `include` directive, in RST documents::
.. include:: path/to/file.md
:parser: myst_parser.docutils_
"""
from myst_parser.parsers.docutils_ import Parser # noqa: F401
|