Parse Markdown files into a structured Python object
This commit is contained in:
parent
2676994b11
commit
705f2c6178
15 changed files with 571 additions and 8 deletions
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",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue