feat: initial CTStruct framework
- CTNode: 트리 기본 단위 (전위/후위/BFS 순회, 탐색, 분리) - CTTree: 트리 컨테이너 (빌더 API, TOC, filter/map/merge) - NodeType: 구조/블록/인라인/메타 노드 타입 Enum - MarkdownParser: Markdown → CTTree 파서 - MarkdownRenderer: CTTree → Markdown 렌더러 - JSONRenderer: CTTree → JSON 직렬화 - 27개 단위/통합 테스트 전체 통과
This commit is contained in:
4
ctstruct/parsers/__init__.py
Normal file
4
ctstruct/parsers/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
from .base import BaseParser
|
||||
from .markdown import MarkdownParser
|
||||
|
||||
__all__ = ["BaseParser", "MarkdownParser"]
|
||||
Reference in New Issue
Block a user