mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 10:52:25 -05:00
bump dependencies: minio-go, go-sqlite3, goldmark, otel, x/image/webp (#4075)
Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4075 Co-authored-by: kim <grufwub@gmail.com> Co-committed-by: kim <grufwub@gmail.com>
This commit is contained in:
parent
457ca3c9d3
commit
436765a6a2
31 changed files with 500 additions and 167 deletions
1
vendor/github.com/yuin/goldmark/ast/block.go
generated
vendored
1
vendor/github.com/yuin/goldmark/ast/block.go
generated
vendored
|
|
@ -515,6 +515,7 @@ func (n *HTMLBlock) Dump(source []byte, level int) {
|
|||
cl := n.ClosureLine
|
||||
fmt.Printf("%sClosure: \"%s\"\n", indent2, string(cl.Value(source)))
|
||||
}
|
||||
fmt.Printf("%sHasBlankPreviousLines: %v\n", indent2, n.HasBlankPreviousLines())
|
||||
fmt.Printf("%s}\n", indent)
|
||||
}
|
||||
|
||||
|
|
|
|||
2
vendor/github.com/yuin/goldmark/parser/parser.go
generated
vendored
2
vendor/github.com/yuin/goldmark/parser/parser.go
generated
vendored
|
|
@ -1096,7 +1096,7 @@ func (p *parser) parseBlocks(parent ast.Node, reader text.Reader, pc Context) {
|
|||
// When current node is a container block and has no children,
|
||||
// we try to open new child nodes
|
||||
if state&HasChildren != 0 && i == lastIndex {
|
||||
isBlank = isBlankLine(lineNum-1, i, blankLines)
|
||||
isBlank = isBlankLine(lineNum-1, i+1, blankLines)
|
||||
p.openBlocks(be.Node, isBlank, reader, pc)
|
||||
break
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue