mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01: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:
parent
bac57ab590
commit
a60f506dd7
1 changed files with 2 additions and 1 deletions
|
@ -605,7 +605,8 @@ func ExcerptBlob(ctx *context.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
section := &gitdiff.DiffSection{
|
section := &gitdiff.DiffSection{
|
||||||
Name: filePath,
|
FileName: filePath,
|
||||||
|
Name: filePath,
|
||||||
}
|
}
|
||||||
if direction == "up" && (idxLeft-lastLeft) > chunkSize {
|
if direction == "up" && (idxLeft-lastLeft) > chunkSize {
|
||||||
idxLeft -= chunkSize
|
idxLeft -= chunkSize
|
||||||
|
|
Loading…
Reference in a new issue