9 lines
228 B
Python
9 lines
228 B
Python
|
|
"""
|
||
|
|
Content module for MarkdownMatters CLI.
|
||
|
|
Handles content extraction without frontmatter and tailmatter zones.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .parser import ContentParser
|
||
|
|
from .stats import ContentStats
|
||
|
|
|
||
|
|
__all__ = ['ContentParser', 'ContentStats']
|