markitect-main/markitect/proxy/extractors/__init__.py

15 lines
476 B
Python
Raw Normal View History

"""
Built-in extractor registration.
Importing this module registers all built-in extractors with the global registry.
"""
from markitect.proxy.registry import registry
from markitect.proxy.extractors.pdf import PdfExtractor
from markitect.proxy.extractors.html import HtmlExtractor
from markitect.proxy.extractors.markdown import MarkdownNormalizer
registry.register(PdfExtractor())
registry.register(HtmlExtractor())
registry.register(MarkdownNormalizer())