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 b5ace48 commit f1fc875Copy full SHA for f1fc875
pyproject.toml
@@ -33,6 +33,7 @@ dependencies = [
33
"beautifulsoup4>=4.12",
34
"markdownify>=0.14",
35
"mdformat>=0.7.21",
36
+ "mdformat-tables>=1.0",
37
]
38
39
[project.urls]
src/mkdocs_llmstxt/_internal/plugin.py
@@ -237,4 +237,8 @@ def _generate_page_markdown(
237
autoclean(soup)
238
if preprocess:
239
_preprocess(soup, preprocess, path)
240
- return mdformat.text(_converter.convert_soup(soup), options={"wrap": "no"})
+ return mdformat.text(
241
+ _converter.convert_soup(soup),
242
+ options={"wrap": "no"},
243
+ extensions=("tables",),
244
+ )
0 commit comments