summaryrefslogtreecommitdiff
path: root/textproc/py-sphinx-markdown-tables/files/patch-markdown
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/py-sphinx-markdown-tables/files/patch-markdown')
-rw-r--r--textproc/py-sphinx-markdown-tables/files/patch-markdown13
1 files changed, 0 insertions, 13 deletions
diff --git a/textproc/py-sphinx-markdown-tables/files/patch-markdown b/textproc/py-sphinx-markdown-tables/files/patch-markdown
deleted file mode 100644
index 0e96c3cebafa..000000000000
--- a/textproc/py-sphinx-markdown-tables/files/patch-markdown
+++ /dev/null
@@ -1,13 +0,0 @@
-Obtained from: https://github.com/ryanfox/sphinx-markdown-tables/commit/7d0bbd2c851efcc9ba25b1a851924333b923c023
-
---- sphinx_markdown_tables/__init__.py.orig 2022-08-16 13:25:15 UTC
-+++ sphinx_markdown_tables/__init__.py
-@@ -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)