实现 Export Service 完整生命周期:mistune AST → Document AST → HtmlExporter 渲染完整 HTML5,异步任务注册表 + 取消 + 24h 产物过期。新增 5 个 /api/exports 端点与 15 项测试;pdf/docx 与函数图像静态渲染留待后续 PR。
9 lines
376 B
Python
9 lines
376 B
Python
"""Export Service:多格式文档导出(首批 HTML)。
|
||
|
||
模块划分:
|
||
- document.py Document AST 内部协议 + DocumentExporter Protocol + ExportResult
|
||
- markdown.py mistune → Document AST 解析
|
||
- exporters/html.py HtmlExporter(Document AST → HTML5)
|
||
- service.py 导出任务注册表、后台执行、取消与文件生命周期
|
||
"""
|