read: paragraph text that looks like a Markdown block becomes structure on publish
维护者通常 1 天内回复
还没有人认领这个 Issue。
评估
调研方向
Start in storage_to_md.go at renderBlock's block-level p case, then trace the read → publish path described in the issue. Cover the listed leading Markdown block markers, including HTML and table-like lines, and verify that escaped paragraph text remains unchanged after another read → publish cycle.
由索引模型根据 Issue 内容生成。
描述
Problem
`read` and `export` write a paragraph's text as Markdown without escaping a leading block marker, so text that looks like a Markdown block turns into that block on the next publish. Found in the second review of #55.
Reproduced 2026-09-25 (read → publish):
| storage | read writes | publish sends |
|---|---|---|
| ` 1. not a list ` |
`1. not a list` | `
|
| ` # not heading ` |
`# not heading` | `not heading` |
| ` > 5 errors ` |
`> 5 errors` | `` |
The page's content changes silently on a read → update cycle, and the Markdown is a fixed point after the first cycle, so no round-trip test notices. It affects every paragraph `read` writes: top level, layout cells, macro bodies, and (since #55) raw table cells. A GFM pipe-table cell is not affected, because its text is inline.
Notes
- The fix belongs where `storage_to_md.go` renders a block-level `
` (`renderBlock`'s `p` case), escaping a leading marker with a backslash (`1\.`, `\#`, `\>`).
- The markers to cover include `-`, `+`, `*`, `1.`/`1)`, `#`, `>`, a line that is only `---`/`===` (a thematic break or a setext underline), four leading spaces (indented code), and `|` if a line could read as a table row. Probably also a leading `<` that would start an HTML block.
- The escape must survive the next read, so the Markdown stays a fixed point.
- 主要语言
- Go
- 星标
- 2
- 派生
- 0
- 平均合并
- 2 小时 29 分钟
- 30 天内合并 PR
- 60
环境准备
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
mozilla/markfluence 的其他 Issue
-
enhancement
难度 4/5 3-5 天 新手友好度 48/100
mozilla/markfluence#210 ·
维护者通常 1 天内回复
-
documentation
难度 5/5 一周以上 新手友好度 25/100
mozilla/markfluence#209 ·
维护者通常 1 天内回复
-
bug
难度 3/5 1-2 天 新手友好度 72/100
mozilla/markfluence#205 ·
维护者通常 1 天内回复
-
bug
难度 3/5 1-2 天 新手友好度 76/100
mozilla/markfluence#204 ·
维护者通常 1 天内回复
-
bug
难度 3/5 1-2 天 新手友好度 55/100
mozilla/markfluence#181 · 1 条评论 ·
维护者通常 1 天内回复
查看 mozilla/markfluence 的全部 Issue
相似的 Issue
-
bug needs triage
难度 2/5 1-3 小时 新手友好度 78/100
维护者通常 1 天内回复
-
bug P2 reliability
难度 2/5 1-3 小时 新手友好度 88/100
afreidah/s3-orchestrator#1564 ·
维护者通常 1 天内回复
-
难度 2/5 1-3 小时 新手友好度 84/100
blinklabs-io/gouroboros#2577 ·
维护者通常 1 天内回复
-
agentic-workflows
难度 2/5 1-3 小时 新手友好度 68/100
维护者通常 1 天内回复
-
难度 2/5 1-3 小时 新手友好度 88/100
维护者通常 1 天内回复