P2 | markdown.rs 多个 comrak 节点类型 fallthrough 到 _ => None #48
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
背景
collect_blocks 的 match 中 FrontMatter、FootnoteDefinition 等节点类型落到了 _ => None 分支,内容被静默丢弃。虽然这些类型在实际文档中少见,但应至少记录为可见块。
需要处理的节点
位置
crates/zx_document_core/src/markdown.rs:149-160
修复完成 (2026-06-06)
实现
NodeValue::FrontMatter(content)→CodeBlock(language=yaml)NodeValue::FootnoteDefinition→Paragraph(收集子文本)状态
✅ 已修复。