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.
2 parents 0e6228a + 576bb9a commit b88a047Copy full SHA for b88a047
martor/utils.py
@@ -33,7 +33,9 @@ def markdownify(markdown_content):
33
extensions=MARTOR_MARKDOWN_EXTENSIONS,
34
extension_configs=MARTOR_MARKDOWN_EXTENSION_CONFIGS
35
)
36
- except Exception:
+ except TypeError as e:
37
+ if 'extendMarkdown' not in str(e):
38
+ raise
39
raise VersionNotCompatible("The markdown isn't compatible, please reinstall "
40
"your python markdown into Markdown>=3.0")
41
0 commit comments