generated from coulomb/repo-seed
Parse Markdown files into a structured Python object
This commit is contained in:
21
src/markitect_tool/__init__.py
Normal file
21
src/markitect_tool/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
"""Structured markdown primitives for markitect-tool."""
|
||||
|
||||
from markitect_tool.core import (
|
||||
ContentBlock,
|
||||
Document,
|
||||
Heading,
|
||||
MarkdownParseError,
|
||||
Section,
|
||||
parse_markdown,
|
||||
parse_markdown_file,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"ContentBlock",
|
||||
"Document",
|
||||
"Heading",
|
||||
"MarkdownParseError",
|
||||
"Section",
|
||||
"parse_markdown",
|
||||
"parse_markdown_file",
|
||||
]
|
||||
Reference in New Issue
Block a user