This commit is contained in:
Unknown 2014-05-29 22:09:50 -04:00
parent 6696610aea
commit 9085dfa426
2 changed files with 6 additions and 3 deletions

View File

@ -12,8 +12,8 @@
"models": "", "models": "",
"others": [ "others": [
"modules", "modules",
"/project/works/open/src/github.com/gogits/logs", "$GOPATH/src/github.com/gogits/logs",
"/project/works/open/src/github.com/gogits/git" "$GOPATH/src/github.com/gogits/git"
] ]
}, },
"cmd_args": [ "cmd_args": [

View File

@ -252,7 +252,10 @@ func Single(ctx *middleware.Context, params martini.Params) {
if isTextFile { if isTextFile {
d, _ := ioutil.ReadAll(dataRc) d, _ := ioutil.ReadAll(dataRc)
buf = append(buf, d...) 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)
} }
} }
} }