Преглед изворни кода

:art: Improve the handling of inline-math containing `|` in the table https://github.com/siyuan-note/siyuan/issues/9227

Daniel пре 1 година
родитељ
комит
4ed3efd7dd
2 измењених фајлова са 7 додато и 2 уклоњено
  1. 2 2
      app/stage/protyle/js/lute/lute.min.js
  2. 5 0
      kernel/model/template.go

+ 2 - 2
app/stage/protyle/js/lute/lute.min.js

@@ -1,3 +1,3 @@
 version https://git-lfs.github.com/spec/v1
-oid sha256:12031aad4d13b869024424e0ce2b444fc59e872b6e644f2e378248de3787d7c5
-size 3784841
+oid sha256:e55c0f0c6a57879417c68d8b93e610cdd4107080c9d083f035f396bb24eb5fa2
+size 3784113

+ 5 - 0
kernel/model/template.go

@@ -271,6 +271,11 @@ func renderTemplate(p, id string) (string, error) {
 					unlinks = append(unlinks, n)
 				}
 			}
+		} else if n.IsTextMarkType("inline-math") {
+			if n.ParentIs(ast.NodeTableCell) {
+				// 表格中的公式中带有管道符时使用 HTML 实体替换管道符 Improve the handling of inline-math containing `|` in the table https://github.com/siyuan-note/siyuan/issues/9227
+				n.TextMarkInlineMathContent = strings.ReplaceAll(n.TextMarkInlineMathContent, "|", "|")
+			}
 		}
 		return ast.WalkContinue
 	})