diff --git a/routers/repo/view.go b/routers/repo/view.go
index fa1087fe0..e8e1bacc4 100644
--- a/routers/repo/view.go
+++ b/routers/repo/view.go
@@ -93,16 +93,12 @@ func renderDirectory(ctx *context.Context, treeLink string) {
if isTextFile {
d, _ := ioutil.ReadAll(dataRc)
buf = append(buf, d...)
- newbuf := markup.Render(readmeFile.Name(), buf, treeLink, ctx.Repo.Repository.ComposeMetas())
- if newbuf != nil {
- ctx.Data["IsMarkup"] = true
+ ctx.Data["IsRenderedHTML"] = true
+ if markup.Type(readmeFile.Name()) != "" {
+ ctx.Data["FileContent"] = string(markup.Render(readmeFile.Name(), buf, treeLink, ctx.Repo.Repository.ComposeMetas()))
} else {
- // FIXME This is the only way to show non-markdown files
- // instead of a broken "View Raw" link
- ctx.Data["IsMarkup"] = false
- newbuf = bytes.Replace(buf, []byte("\n"), []byte(`
`), -1)
+ ctx.Data["FileContent"] = string(bytes.Replace(buf, []byte("\n"), []byte(`
`), -1))
}
- ctx.Data["FileContent"] = string(newbuf)
}
}
@@ -195,14 +191,13 @@ func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink st
d, _ := ioutil.ReadAll(dataRc)
buf = append(buf, d...)
- tp := markup.Type(blob.Name())
- isSupportedMarkup := tp != ""
- ctx.Data["IsMarkup"] = isSupportedMarkup
readmeExist := markup.IsReadmeFile(blob.Name())
ctx.Data["ReadmeExist"] = readmeExist
- if isSupportedMarkup {
+ if markup.Type(blob.Name()) != "" {
+ ctx.Data["IsRenderedHTML"] = true
ctx.Data["FileContent"] = string(markup.Render(blob.Name(), buf, path.Dir(treeLink), ctx.Repo.Repository.ComposeMetas()))
} else if readmeExist {
+ ctx.Data["IsRenderedHTML"] = true
ctx.Data["FileContent"] = string(bytes.Replace(buf, []byte("\n"), []byte(`
`), -1))
} else {
// Building code view blocks with line number on server side.
diff --git a/templates/repo/view_file.tmpl b/templates/repo/view_file.tmpl
index 898b9b555..c68da4fae 100644
--- a/templates/repo/view_file.tmpl
+++ b/templates/repo/view_file.tmpl
@@ -36,8 +36,8 @@
{{end}}