From cb592683dd0e335c755afb7902aa7afd74c73666 Mon Sep 17 00:00:00 2001 From: Gio Date: Thu, 17 Dec 2020 18:41:12 -0600 Subject: [PATCH] Update inlinepatterns.py util.htmlStash.store does not take a second argument (old syntax?) --- mdx_oembed/inlinepatterns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdx_oembed/inlinepatterns.py b/mdx_oembed/inlinepatterns.py index 8c59ea1..1dcee45 100644 --- a/mdx_oembed/inlinepatterns.py +++ b/mdx_oembed/inlinepatterns.py @@ -23,7 +23,7 @@ def handleMatch(self, match): return None else: html = "
%s
" % html - placeholder = self.markdown.htmlStash.store(html, True) + placeholder = self.markdown.htmlStash.store(html) return placeholder def get_oembed_html_for_match(self, match):