Files
Atay-Makhzan/modules/markup/markdown/transform_link.go
T

28 lines
853 B
Go
Raw Normal View History

2024-03-28 10:26:13 +08:00
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package markdown
import (
"code.gitea.io/gitea/modules/markup"
"github.com/yuin/goldmark/ast"
)
2024-11-24 16:18:57 +08:00
func resolveLink(ctx *markup.RenderContext, link, userContentAnchorPrefix string) (result string, resolved bool) {
isAnchorFragment := link != "" && link[0] == '#'
if !isAnchorFragment && !markup.IsFullURLString(link) {
link, resolved = ctx.RenderHelper.ResolveLink(link, markup.LinkTypeDefault), true
}
if isAnchorFragment && userContentAnchorPrefix != "" {
link, resolved = userContentAnchorPrefix+link[1:], true
}
return link, resolved
}
func (g *ASTTransformer) transformLink(ctx *markup.RenderContext, v *ast.Link) {
2024-11-24 16:18:57 +08:00
if link, resolved := resolveLink(ctx, string(v.Destination), "#user-content-"); resolved {
2024-06-18 11:09:20 +08:00
v.Destination = []byte(link)
2024-03-28 10:26:13 +08:00
}
}