Procházet zdrojové kódy

:art: 大纲字号不应该跟随字体设置 Fix https://github.com/siyuan-note/siyuan/issues/7202

Liang Ding před 2 roky
rodič
revize
1d83eada71
1 změnil soubory, kde provedl 9 přidání a 0 odebrání
  1. 9 0
      kernel/model/render.go

+ 9 - 0
kernel/model/render.go

@@ -18,6 +18,7 @@ package model
 
 import (
 	"bytes"
+	"regexp"
 	"strings"
 
 	"github.com/88250/gulu"
@@ -46,6 +47,14 @@ func renderOutline(node *ast.Node, luteEngine *lute.Lute) (ret string) {
 		if !entering {
 			return ast.WalkContinue
 		}
+
+		if style := n.IALAttr("style"); "" != style {
+			if strings.Contains(style, "font-size") { // 大纲字号不应该跟随字体设置 https://github.com/siyuan-note/siyuan/issues/7202
+				style = regexp.MustCompile("font-size:.*?;").ReplaceAllString(style, "font-size: inherit;")
+				n.SetIALAttr("style", style)
+			}
+		}
+
 		switch n.Type {
 		case ast.NodeText, ast.NodeLinkText, ast.NodeCodeBlockCode, ast.NodeMathBlockContent:
 			tokens := html.EscapeHTML(n.Tokens)