mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-05-13 06:20:24 +00:00
- Go has a suite of small linters that helps with modernizing Go code by using newer functions and catching small mistakes, https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/modernize. - Enable this linter in golangci-lint. - There's also [`go fix`](https://go.dev/blog/gofix), which is not yet released as a linter in golangci-lint: https://github.com/golangci/golangci-lint/pull/6385 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/11936 Reviewed-by: Mathieu Fenniak <mfenniak@noreply.codeberg.org> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
42 lines
1.2 KiB
Go
42 lines
1.2 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package math
|
|
|
|
import (
|
|
gast "github.com/yuin/goldmark/ast"
|
|
"github.com/yuin/goldmark/renderer"
|
|
"github.com/yuin/goldmark/util"
|
|
)
|
|
|
|
// BlockRenderer represents a renderer for math Blocks
|
|
type BlockRenderer struct{}
|
|
|
|
// NewBlockRenderer creates a new renderer for math Blocks
|
|
func NewBlockRenderer() renderer.NodeRenderer {
|
|
return &BlockRenderer{}
|
|
}
|
|
|
|
// RegisterFuncs registers the renderer for math Blocks
|
|
func (r *BlockRenderer) RegisterFuncs(reg renderer.NodeRendererFuncRegisterer) {
|
|
reg.Register(KindBlock, r.renderBlock)
|
|
}
|
|
|
|
func (r *BlockRenderer) writeLines(w util.BufWriter, source []byte, n gast.Node) {
|
|
l := n.Lines().Len()
|
|
for i := range l {
|
|
line := n.Lines().At(i)
|
|
_, _ = w.Write(util.EscapeHTML(line.Value(source)))
|
|
}
|
|
}
|
|
|
|
func (r *BlockRenderer) renderBlock(w util.BufWriter, source []byte, node gast.Node, entering bool) (gast.WalkStatus, error) {
|
|
n := node.(*Block)
|
|
if entering {
|
|
_, _ = w.WriteString(`<pre class="code-block is-loading"><code class="chroma language-math display">`)
|
|
r.writeLines(w, source, n)
|
|
} else {
|
|
_, _ = w.WriteString(`</code></pre>` + "\n")
|
|
}
|
|
return gast.WalkContinue, nil
|
|
}
|