vendor: update github.com/yuin/goldmark to v1.1.24 (#10551)

This commit is contained in:
Antoine GIRARD 2020-03-01 14:01:44 +01:00 committed by GitHub
parent 14f3593f20
commit f9d34b2c60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 5 deletions

View file

@ -332,7 +332,11 @@ func (r *blockReader) PrecendingCharacter() rune {
if r.pos.Padding != 0 {
return rune(' ')
}
if r.pos.Start <= 0 {
if r.segments.Len() < 1 {
return rune('\n')
}
firstSegment := r.segments.At(0)
if r.line == 0 && r.pos.Start <= firstSegment.Start {
return rune('\n')
}
l := len(r.source)