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