diff options
author | Giteabot <teabot@gitea.io> | 2024-03-11 17:10:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-11 10:10:07 +0100 |
commit | 4bfc43ef8de7c5e42f9502aa23075ee5fe04b26b (patch) | |
tree | 954c3e9a923b7273ea72d274e4b59cd90cc5bc4c /modules | |
parent | 93e105a228805314f618d836e5ab8a56fbb62ac8 (diff) | |
download | gitea-4bfc43ef8de7c5e42f9502aa23075ee5fe04b26b.tar.gz gitea-4bfc43ef8de7c5e42f9502aa23075ee5fe04b26b.zip |
Fix inconsistent rendering of block mathematical expressions (#29677) (#29711)
Backport #29677 by @yp05327
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: yp05327 <576951401@qq.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'modules')
-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 771162b9a3..8bf3ac1da2 100644 --- a/modules/markup/markdown/markdown.go +++ b/modules/markup/markdown/markdown.go @@ -103,7 +103,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 } |