mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-16 22:10:24 +00:00
Updated the initialization of OEmbedExtension to be compatible with Markdown 2.6. See https://pythonhosted.org/Markdown/release-2.6.html
9 lines
161 B
Python
9 lines
161 B
Python
# -*- coding: utf-8 -*-
|
|
from mdx_oembed.extension import OEmbedExtension
|
|
|
|
|
|
VERSION = '0.1.5'
|
|
|
|
|
|
def makeExtension(**kwargs):
|
|
return OEmbedExtension(**kwargs)
|