mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-01 20:32:11 +00:00
Working on #211
This commit is contained in:
parent
6696610aea
commit
9085dfa426
2 changed files with 6 additions and 3 deletions
|
@ -252,7 +252,10 @@ func Single(ctx *middleware.Context, params martini.Params) {
|
|||
if isTextFile {
|
||||
d, _ := ioutil.ReadAll(dataRc)
|
||||
buf = append(buf, d...)
|
||||
ctx.Data["FileContent"] = string(base.RenderMarkdown(buf, branchLink))
|
||||
if base.IsMarkdownFile(readmeFile.Name()) {
|
||||
buf = base.RenderMarkdown(buf, branchLink)
|
||||
}
|
||||
ctx.Data["FileContent"] = string(buf)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue