15 lines
476 B
Python
15 lines
476 B
Python
|
|
"""
|
||
|
|
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())
|