mirror of
https://github.com/go-gitea/gitea.git
synced 2026-06-02 12:32:05 +02:00
### Description Replaces all remaining direct `gopkg.in/yaml.v3` imports with `go.yaml.in/yaml/v4` across models, modules, routers, services, and integration tests. `gopkg.in/yaml.v3` moves from a direct to an indirect dependency in `go.mod`. #### API compatibility The yaml.Node type, node.Kind/node.Content traversal style (modules/markup/markdown/convertyaml.go), and the UnmarshalYAML(*yaml.Node) interface signature (modules/optional/serialization.go) are all preserved in v4 — no call-site changes were required beyond the import path. **Related:** - https://github.com/go-gitea/gitea/pull/36564#issuecomment-4526536805 --------- Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Claude (Opus 4.8) <noreply@anthropic.com>
99 lines
2.6 KiB
Go
99 lines
2.6 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package markdown
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"gitea.dev/modules/htmlutil"
|
|
"gitea.dev/modules/svg"
|
|
|
|
"github.com/yuin/goldmark/ast"
|
|
east "github.com/yuin/goldmark/extension/ast"
|
|
"go.yaml.in/yaml/v4"
|
|
)
|
|
|
|
func nodeToTable(meta *yaml.Node) ast.Node {
|
|
for meta != nil && meta.Kind == yaml.DocumentNode {
|
|
meta = meta.Content[0]
|
|
}
|
|
if meta == nil {
|
|
return nil
|
|
}
|
|
switch meta.Kind {
|
|
case yaml.MappingNode:
|
|
return mappingNodeToTable(meta)
|
|
case yaml.SequenceNode:
|
|
return sequenceNodeToTable(meta)
|
|
default:
|
|
return ast.NewString([]byte(meta.Value))
|
|
}
|
|
}
|
|
|
|
func mappingNodeToTable(meta *yaml.Node) ast.Node {
|
|
table := east.NewTable()
|
|
alignments := make([]east.Alignment, 0, len(meta.Content)/2)
|
|
for i := 0; i < len(meta.Content); i += 2 {
|
|
alignments = append(alignments, east.AlignNone)
|
|
}
|
|
|
|
headerRow := east.NewTableRow(alignments)
|
|
valueRow := east.NewTableRow(alignments)
|
|
for i := 0; i < len(meta.Content); i += 2 {
|
|
cell := east.NewTableCell()
|
|
|
|
cell.AppendChild(cell, nodeToTable(meta.Content[i]))
|
|
headerRow.AppendChild(headerRow, cell)
|
|
|
|
if i+1 < len(meta.Content) {
|
|
cell = east.NewTableCell()
|
|
cell.AppendChild(cell, nodeToTable(meta.Content[i+1]))
|
|
valueRow.AppendChild(valueRow, cell)
|
|
}
|
|
}
|
|
|
|
table.AppendChild(table, east.NewTableHeader(headerRow))
|
|
table.AppendChild(table, valueRow)
|
|
return table
|
|
}
|
|
|
|
func sequenceNodeToTable(meta *yaml.Node) ast.Node {
|
|
table := east.NewTable()
|
|
alignments := []east.Alignment{east.AlignNone}
|
|
for _, item := range meta.Content {
|
|
row := east.NewTableRow(alignments)
|
|
cell := east.NewTableCell()
|
|
cell.AppendChild(cell, nodeToTable(item))
|
|
row.AppendChild(row, cell)
|
|
table.AppendChild(table, row)
|
|
}
|
|
return table
|
|
}
|
|
|
|
func nodeToDetails(g *ASTTransformer, meta *yaml.Node) ast.Node {
|
|
for meta != nil && meta.Kind == yaml.DocumentNode {
|
|
meta = meta.Content[0]
|
|
}
|
|
if meta == nil {
|
|
return nil
|
|
}
|
|
if meta.Kind != yaml.MappingNode {
|
|
return nil
|
|
}
|
|
var keys []string
|
|
for i := 0; i < len(meta.Content); i += 2 {
|
|
if meta.Content[i].Kind == yaml.ScalarNode {
|
|
keys = append(keys, meta.Content[i].Value)
|
|
}
|
|
}
|
|
details := NewDetails()
|
|
details.SetAttributeString(g.renderInternal.SafeAttr("class"), g.renderInternal.SafeValue("frontmatter-content"))
|
|
summary := NewSummary()
|
|
summaryInnerHTML := htmlutil.HTMLFormat("%s %s", svg.RenderHTML("octicon-table", 12), strings.Join(keys, ", "))
|
|
summary.AppendChild(summary, NewRawHTML(summaryInnerHTML))
|
|
details.AppendChild(details, summary)
|
|
details.AppendChild(details, nodeToTable(meta))
|
|
return details
|
|
}
|