python-markdown-oembed/mdx_oembed/__init__.py
Sami Turcotte c3a4466eca Reconcile with Markdown 2.6
Updated the initialization of OEmbedExtension to be compatible with
Markdown 2.6. See https://pythonhosted.org/Markdown/release-2.6.html
2015-04-02 03:47:33 -04:00

9 lines
161 B
Python

# -*- coding: utf-8 -*-
from mdx_oembed.extension import OEmbedExtension
VERSION = '0.1.5'
def makeExtension(**kwargs):
return OEmbedExtension(**kwargs)