[chore]: Bump github.com/yuin/goldmark from 1.7.1 to 1.7.2 (#3018)

This commit is contained in:
dependabot[bot]
2024-06-17 08:10:11 +00:00
committed by GitHub
parent f1cbf6fb76
commit 76d695d847
9 changed files with 11 additions and 104 deletions

View File

@ -445,7 +445,7 @@ func (r *Renderer) renderList(w util.BufWriter, source []byte, node ast.Node, en
_ = w.WriteByte('<')
_, _ = w.WriteString(tag)
if n.IsOrdered() && n.Start != 1 {
fmt.Fprintf(w, " start=\"%d\"", n.Start)
_, _ = fmt.Fprintf(w, " start=\"%d\"", n.Start)
}
if n.Attributes() != nil {
RenderAttributes(w, n, ListAttributeFilter)