Skip to content

Commit

Permalink
Fixed for latest markdown library
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzordzu authored and ryanfox committed Jul 24, 2022
1 parent 0cf1398 commit 7d0bbd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinx_markdown_tables/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def process_tables(app, docname, source):
"""
import markdown
md = markdown.Markdown(extensions=['markdown.extensions.tables'])
table_processor = markdown.extensions.tables.TableProcessor(md.parser)
table_processor = markdown.extensions.tables.TableProcessor(md.parser, {})

raw_markdown = source[0]
blocks = re.split(r'(\n{2,})', raw_markdown)
Expand Down

0 comments on commit 7d0bbd2

Please sign in to comment.