mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
* fix multiple readme file rendering and fix #1657 * remove unnecessary loop
This commit is contained in:
parent
98548c83d3
commit
0d1e001b9c
2 changed files with 18 additions and 3 deletions
|
@ -59,6 +59,15 @@ func Type(filename string) string {
|
|||
return ""
|
||||
}
|
||||
|
||||
// ReadmeFileType reports whether name looks like a README file
|
||||
// based on its name and find the parser via its ext name
|
||||
func ReadmeFileType(name string) (string, bool) {
|
||||
if IsReadmeFile(name) {
|
||||
return Type(name), true
|
||||
}
|
||||
return "", false
|
||||
}
|
||||
|
||||
// IsReadmeFile reports whether name looks like a README file
|
||||
// based on its name.
|
||||
func IsReadmeFile(name string) bool {
|
||||
|
|
|
@ -56,14 +56,20 @@ func renderDirectory(ctx *context.Context, treeLink string) {
|
|||
|
||||
var readmeFile *git.Blob
|
||||
for _, entry := range entries {
|
||||
if entry.IsDir() || !markup.IsReadmeFile(entry.Name()) {
|
||||
if entry.IsDir() {
|
||||
continue
|
||||
}
|
||||
|
||||
tp, ok := markup.ReadmeFileType(entry.Name())
|
||||
if !ok {
|
||||
continue
|
||||
}
|
||||
|
||||
// TODO: collect all possible README files and show with priority.
|
||||
readmeFile = entry.Blob()
|
||||
if tp != "" {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
if readmeFile != nil {
|
||||
ctx.Data["RawFileLink"] = ""
|
||||
|
|
Loading…
Reference in a new issue