diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:23:02 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:23:02 +0000 |
commit | 943e3dc057eca53e68ddec51529bd6a1279ebd8e (patch) | |
tree | 61fb7bac619a56dfbcdcbdb7b0d4d6535fc36fe9 /myst_parser/sphinx_.py | |
parent | Initial commit. (diff) | |
download | myst-parser-upstream/0.18.1.tar.xz myst-parser-upstream/0.18.1.zip |
Adding upstream version 0.18.1.upstream/0.18.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | myst_parser/sphinx_.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/myst_parser/sphinx_.py b/myst_parser/sphinx_.py new file mode 100644 index 0000000..b085086 --- /dev/null +++ b/myst_parser/sphinx_.py @@ -0,0 +1,6 @@ +"""A module for compatibility with the docutils>=0.17 `include` directive, in RST documents:: + + .. include:: path/to/file.md + :parser: myst_parser.sphinx_ +""" +from myst_parser.parsers.sphinx_ import MystParser as Parser # noqa: F401 |