Skip to content

Commit 8fc1a8f

Browse files
yp05327wxiaoguang
andauthored
Fix inconsistent rendering of block mathematical expressions (#29677)
Fix #28735 GitHub render `\```math\``` ` as a block now. Add `display` class will render it as a block. After: ![image](https://github.com/go-gitea/gitea/assets/18380374/2a1c20c7-438e-4ab1-8c66-cf91c8343087) ![image](https://github.com/go-gitea/gitea/assets/18380374/b81b8a93-8bca-46a5-b7db-e0d2f53e1342) --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
1 parent 3c6fc25 commit 8fc1a8f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/markup/markdown/markdown.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ func SpecializedMarkdown() goldmark.Markdown {
104104
}
105105

106106
// include language-x class as part of commonmark spec
107-
_, err = w.WriteString(`<code class="chroma language-` + string(language) + `">`)
107+
// the "display" class is used by "js/markup/math.js" to render the code element as a block
108+
_, err = w.WriteString(`<code class="chroma language-` + string(language) + ` display">`)
108109
if err != nil {
109110
return
110111
}

0 commit comments

Comments
 (0)