|
|
|
@ -336,6 +336,7 @@ func renderDirectory(ctx *context.Context, treeLink string) {
|
|
|
|
|
ctx.Data["MarkupType"] = string(markupType)
|
|
|
|
|
var result strings.Builder
|
|
|
|
|
err := markup.Render(&markup.RenderContext{
|
|
|
|
|
Ctx: ctx,
|
|
|
|
|
Filename: readmeFile.name,
|
|
|
|
|
URLPrefix: readmeTreelink,
|
|
|
|
|
Metas: ctx.Repo.Repository.ComposeDocumentMetas(),
|
|
|
|
@ -511,6 +512,7 @@ func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink st
|
|
|
|
|
ctx.Data["MarkupType"] = markupType
|
|
|
|
|
var result strings.Builder
|
|
|
|
|
err := markup.Render(&markup.RenderContext{
|
|
|
|
|
Ctx: ctx,
|
|
|
|
|
Filename: blob.Name(),
|
|
|
|
|
URLPrefix: path.Dir(treeLink),
|
|
|
|
|
Metas: ctx.Repo.Repository.ComposeDocumentMetas(),
|
|
|
|
@ -570,6 +572,7 @@ func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink st
|
|
|
|
|
ctx.Data["MarkupType"] = markupType
|
|
|
|
|
var result strings.Builder
|
|
|
|
|
err := markup.Render(&markup.RenderContext{
|
|
|
|
|
Ctx: ctx,
|
|
|
|
|
Filename: blob.Name(),
|
|
|
|
|
URLPrefix: path.Dir(treeLink),
|
|
|
|
|
Metas: ctx.Repo.Repository.ComposeDocumentMetas(),
|
|
|
|
|