mirror of
https://gitee.com/gitea/gitea
synced 2026-01-01 21:26:36 +08:00
Syntax highlight expanded code blobs (#12223)
Expanded code in diffs wasn't being highlighted properly because it wasn't passing the filename to highlighting code. Fixes #12218
This commit is contained in:
@@ -605,7 +605,8 @@ func ExcerptBlob(ctx *context.Context) {
|
||||
return
|
||||
}
|
||||
section := &gitdiff.DiffSection{
|
||||
Name: filePath,
|
||||
FileName: filePath,
|
||||
Name: filePath,
|
||||
}
|
||||
if direction == "up" && (idxLeft-lastLeft) > chunkSize {
|
||||
idxLeft -= chunkSize
|
||||
|
||||
Reference in New Issue
Block a user