mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-17 14:30:25 +00:00
- Merged improvements from Wenzil's fork. Thanks Wenzil! - Update for new version of Markdown breaks backwards compatability. - Dropped test support for Python 2.6 - Fixed test suite (including Travis CI config)
9 lines
161 B
Python
9 lines
161 B
Python
# -*- coding: utf-8 -*-
|
|
from mdx_oembed.extension import OEmbedExtension
|
|
|
|
|
|
VERSION = '0.2.0'
|
|
|
|
|
|
def makeExtension(**kwargs):
|
|
return OEmbedExtension(**kwargs)
|