markitect-main/markitect/parser.py

12 lines
343 B
Python
Raw Permalink Normal View History

"""
Markdown AST Parser - Backward Compatibility Module.
2025-09-16 03:04:18 +02:00
This module re-exports from markitect.core.parser for backward compatibility.
New code should import from markitect.core.parser directly.
"""
2025-09-16 03:04:18 +02:00
# Re-export from core for backward compatibility
from markitect.core.parser import parse_markdown_to_ast
__all__ = ['parse_markdown_to_ast']