diff options
author | yp05327 <576951401@qq.com> | 2024-03-11 14:00:50 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-11 05:00:50 +0000 |
commit | 8fc1a8f0eb642c574610a346e858d42c433ebe01 (patch) | |
tree | 3989eee89520142502c80d37de7491a64a5125d7 /modules/markup/markdown | |
parent | 3c6fc25a77c37d50686caa495d27a31dcef7f75f (diff) | |
download | gitea-8fc1a8f0eb642c574610a346e858d42c433ebe01.tar.gz gitea-8fc1a8f0eb642c574610a346e858d42c433ebe01.zip |
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>
Diffstat (limited to 'modules/markup/markdown')
-rw-r--r-- | modules/markup/markdown/markdown.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/markup/markdown/markdown.go b/modules/markup/markdown/markdown.go index f0b1afa27e..4cca71d511 100644 --- a/modules/markup/markdown/markdown.go +++ b/modules/markup/markdown/markdown.go @@ -104,7 +104,8 @@ func SpecializedMarkdown() goldmark.Markdown { } // include language-x class as part of commonmark spec - _, err = w.WriteString(`<code class="chroma language-` + string(language) + `">`) + // the "display" class is used by "js/markup/math.js" to render the code element as a block + _, err = w.WriteString(`<code class="chroma language-` + string(language) + ` display">`) if err != nil { return } |