From 22e7f76d56ff816d7122000eab3949df7dd879c4 Mon Sep 17 00:00:00 2001 From: Benedikt Willi Date: Tue, 7 Nov 2023 16:33:46 +0100 Subject: [PATCH] Update __init__.py --- src/python_markdown_oembed_extension/__init__.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/python_markdown_oembed_extension/__init__.py b/src/python_markdown_oembed_extension/__init__.py index e69de29..52236bb 100644 --- a/src/python_markdown_oembed_extension/__init__.py +++ b/src/python_markdown_oembed_extension/__init__.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- +from python_markdown_oembed_extension.extension import OEmbedExtension + + +VERSION = '0.2.2' + + +def makeExtension(**kwargs): + return OEmbedExtension(**kwargs)