mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-16 22:10:24 +00:00
removed True argument from store() as it raised a 3 arguments given error
This commit is contained in:
parent
81a8378564
commit
8768a5a546
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ class OEmbedLinkPattern(Pattern):
|
||||||
return None
|
return None
|
||||||
else:
|
else:
|
||||||
html = "<figure class=\"oembed\">%s</figure>" % html
|
html = "<figure class=\"oembed\">%s</figure>" % html
|
||||||
placeholder = self.markdown.htmlStash.store(html, True)
|
placeholder = self.markdown.htmlStash.store(html)
|
||||||
return placeholder
|
return placeholder
|
||||||
|
|
||||||
def get_oembed_html_for_match(self, match):
|
def get_oembed_html_for_match(self, match):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue