MkBuilder
Overview
The MkBuilder is used to created the Container/Block tree structure that represents a document.
Methods
Build the Container/Block tree structure that represents a document.
Usage Example
markdown_content = """
# Title
This is a paragraph."""
document_title = "Title"
container = MkBuilder.from_markdown(markdown_content, document_title)
print(container)