mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-17 06:20:24 +00:00
7 lines
152 B
Python
7 lines
152 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
from mdx_oembed.extension import OEmbedExtension
|
||
|
|
|
||
|
|
|
||
|
|
def makeExtension(configs=None):
|
||
|
|
return OEmbedExtension(configs=configs)
|