From dc8248f8a49e4801e119008a32b28cd2ad6e1a57 Mon Sep 17 00:00:00 2001 From: Andrew Boyarshin Date: Tue, 14 Feb 2017 08:13:59 +0700 Subject: Markdown rendering overhaul (#186) * Markdown rendering overhaul Cleaned up and squashed commits into single one. Signed-off-by: Andrew Boyarshin * Fix markdown API, add markdown module and API tests, improve code coverage Signed-off-by: Andrew Boyarshin --- routers/api/v1/misc/markdown.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'routers/api/v1/misc/markdown.go') diff --git a/routers/api/v1/misc/markdown.go b/routers/api/v1/misc/markdown.go index 1a0c003e7f..947924dbed 100644 --- a/routers/api/v1/misc/markdown.go +++ b/routers/api/v1/misc/markdown.go @@ -9,6 +9,7 @@ import ( "code.gitea.io/gitea/modules/context" "code.gitea.io/gitea/modules/markdown" + "code.gitea.io/gitea/modules/setting" ) // Markdown render markdown document to HTML @@ -26,9 +27,9 @@ func Markdown(ctx *context.APIContext, form api.MarkdownOption) { switch form.Mode { case "gfm": - ctx.Write(markdown.Render([]byte(form.Text), form.Context, nil)) + ctx.Write(markdown.Render([]byte(form.Text), markdown.URLJoin(setting.AppURL, form.Context), nil)) default: - ctx.Write(markdown.RenderRaw([]byte(form.Text), "")) + ctx.Write(markdown.RenderRaw([]byte(form.Text), "", false)) } } @@ -40,5 +41,5 @@ func MarkdownRaw(ctx *context.APIContext) { ctx.Error(422, "", err) return } - ctx.Write(markdown.RenderRaw(body, "")) + ctx.Write(markdown.RenderRaw(body, "", false)) } -- cgit v1.2.3