19 lines
549 B
Python
19 lines
549 B
Python
|
|
"""
|
||
|
|
Template engine package for MarkiTect.
|
||
|
|
|
||
|
|
This package provides template rendering capabilities for dynamic document generation
|
||
|
|
from templates and data sources.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .parser import TemplateParser, TemplateParsingError, InvalidVariableSyntaxError, TemplateAnalysis
|
||
|
|
from .engine import TemplateEngine, TemplateRenderError, VariableNotFoundError
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
'TemplateParser',
|
||
|
|
'TemplateEngine',
|
||
|
|
'TemplateParsingError',
|
||
|
|
'InvalidVariableSyntaxError',
|
||
|
|
'TemplateRenderError',
|
||
|
|
'VariableNotFoundError',
|
||
|
|
'TemplateAnalysis'
|
||
|
|
]
|