mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Resolve all cases for `unused parameter` and `unnecessary type arguments` Related: #30729 --------- Co-authored-by: Giteabot <teabot@gitea.io> (cherry picked from commit e80466f7349164ce4cf3c07bdac30d736d20f035) Conflicts: modules/markup/markdown/transform_codespan.go modules/setting/incoming_email.go routers/api/v1/admin/user_badge.go routers/private/hook_pre_receive.go tests/integration/repo_search_test.go resolved by discarding the change, this is linting only and for the sake of avoiding future conflicts
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			841 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			841 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package markdown
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/markup"
 | 
						|
 | 
						|
	"github.com/yuin/goldmark/ast"
 | 
						|
	"github.com/yuin/goldmark/text"
 | 
						|
	"github.com/yuin/goldmark/util"
 | 
						|
)
 | 
						|
 | 
						|
func (g *ASTTransformer) transformHeading(_ *markup.RenderContext, v *ast.Heading, reader text.Reader, tocList *[]markup.Header) {
 | 
						|
	for _, attr := range v.Attributes() {
 | 
						|
		if _, ok := attr.Value.([]byte); !ok {
 | 
						|
			v.SetAttribute(attr.Name, []byte(fmt.Sprintf("%v", attr.Value)))
 | 
						|
		}
 | 
						|
	}
 | 
						|
	txt := v.Text(reader.Source())
 | 
						|
	header := markup.Header{
 | 
						|
		Text:  util.BytesToReadOnlyString(txt),
 | 
						|
		Level: v.Level,
 | 
						|
	}
 | 
						|
	if id, found := v.AttributeString("id"); found {
 | 
						|
		header.ID = util.BytesToReadOnlyString(id.([]byte))
 | 
						|
	}
 | 
						|
	*tocList = append(*tocList, header)
 | 
						|
	g.applyElementDir(v)
 | 
						|
}
 |