9 lines
265 B
Python
9 lines
265 B
Python
|
|
"""
|
||
|
|
Tailmatter module for MarkdownMatters CLI.
|
||
|
|
Handles tailmatter extraction, QA checklists, editorial workflow, and agent configuration.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .parser import TailmatterParser
|
||
|
|
from .stats import TailmatterStats
|
||
|
|
|
||
|
|
__all__ = ['TailmatterParser', 'TailmatterStats']
|