mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-16 22:10:24 +00:00
- **Removed legacy build files**: - Deleted obsolete `.travis.yml`, `flake.lock`, and `flake.nix` files that were no longer needed for the current build and dependency management setup. - **Updated versioning**: - Incremented the package version from `0.4.0` to `0.5.0` in `version.py` and made adjustments in `pyproject.toml` to reflect the new versioning mechanism. - **Refined package structure**: - Moved source files from `src/python_markdown_oembed_extension` to `mdx_oembed` and renamed references accordingly for better clarity and organization of the codebase. - **Enhanced OEmbed functionality**: - Added dedicated endpoint handling in the new `endpoints.py`. - Refactored the `oembed.py` file to implement a minimal oEmbed consumer, replacing the earlier dependency on `python-oembed`. - **Improved test coverage**: - Transitioned tests from `unittest` to `pytest` framework for better maintainability. - Expanded unit tests, including better error handling and validation for various media types. - **Updated dependency requirements**: - Raised minimum Python version from `3.9` to `3.12` in `pyproject.toml`. - Removed non-essential dependencies and restructured the dependency declarations to streamline package management. These changes focus on modernizing the codebase, improving adherence to current Python standards, and enhancing overall functionality and maintainability.
41 lines
1.5 KiB
Python
41 lines
1.5 KiB
Python
from __future__ import annotations
|
|
|
|
from markdown import Extension
|
|
|
|
from mdx_oembed.endpoints import DEFAULT_ENDPOINTS
|
|
from mdx_oembed.inlinepatterns import OEMBED_LINK_RE, OEmbedLinkPattern
|
|
from mdx_oembed.oembed import OEmbedConsumer
|
|
|
|
|
|
class OEmbedExtension(Extension):
|
|
|
|
def __init__(self, **kwargs):
|
|
self.config = {
|
|
'allowed_endpoints': [
|
|
DEFAULT_ENDPOINTS,
|
|
"A list of oEmbed endpoints to allow. "
|
|
"Defaults to endpoints.DEFAULT_ENDPOINTS",
|
|
],
|
|
'wrapper_class': [
|
|
'oembed',
|
|
"CSS class(es) for the <figure> wrapper element. "
|
|
"Set to empty string to disable wrapping.",
|
|
],
|
|
}
|
|
super().__init__(**kwargs)
|
|
|
|
def extendMarkdown(self, md): # noqa: N802
|
|
consumer = self._prepare_oembed_consumer()
|
|
wrapper_class = self.getConfig('wrapper_class', 'oembed')
|
|
link_pattern = OEmbedLinkPattern(
|
|
OEMBED_LINK_RE, md, consumer, wrapper_class=wrapper_class,
|
|
)
|
|
# Priority 175 — run before the default image pattern (priority 150)
|
|
md.inlinePatterns.register(link_pattern, 'oembed_link', 175)
|
|
|
|
def _prepare_oembed_consumer(self):
|
|
allowed_endpoints = self.getConfig('allowed_endpoints', DEFAULT_ENDPOINTS)
|
|
consumer = OEmbedConsumer()
|
|
for endpoint in (allowed_endpoints or []):
|
|
consumer.add_endpoint(endpoint)
|
|
return consumer
|