17 lines
438 B
Python
17 lines
438 B
Python
|
|
"""
|
||
|
|
Transclusion engine for dynamic content inclusion.
|
||
|
|
|
||
|
|
Provides the core engine and utilities for processing transclusion
|
||
|
|
directives in markdown content, enabling template-based documents
|
||
|
|
with external resource inclusion.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .engine import TransclusionEngine
|
||
|
|
from .context import TransclusionContext
|
||
|
|
from .directives import DirectiveParser
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
'TransclusionEngine',
|
||
|
|
'TransclusionContext',
|
||
|
|
'DirectiveParser',
|
||
|
|
]
|