We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 922cbe2 commit 6ea4ec7Copy full SHA for 6ea4ec7
hypernode/downloader/main.py
@@ -181,7 +181,9 @@ def convert_document(
181
f"# {article_heading}\n"
182
f"{article_body_markdown}"
183
)
184
- document_contents = mdformat.text(document_contents)
+ document_contents = mdformat.text(
185
+ document_contents, extensions=["frontmatter", "myst"]
186
+ )
187
188
filepath = output_dir.joinpath(filename)
189
requirements/base.txt
@@ -5,6 +5,7 @@ mdit-py-plugins
5
sphinx-copybutton==0.5.1
6
mdformat==0.7.16
7
mdformat-myst==0.1.5
8
+mdformat-frontmatter==0.4.1
9
10
beautifulsoup4==4.11.1
11
markdownify==0.11.2
0 commit comments