mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-16 22:10:24 +00:00
9 lines
161 B
Python
9 lines
161 B
Python
# -*- coding: utf-8 -*-
|
|
from mdx_oembed.extension import OEmbedExtension
|
|
|
|
|
|
VERSION = '0.1.8'
|
|
|
|
|
|
def makeExtension(**kwargs):
|
|
return OEmbedExtension(**kwargs)
|