bench-forgejo/routers/api/v1/misc/markdown.go

52 lines
1.3 KiB
Go
Raw Normal View History

2014-03-29 18:46:06 +05:30
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package misc
2014-03-29 18:46:06 +05:30
2014-03-29 19:31:52 +05:30
import (
api "code.gitea.io/sdk/gitea"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/markdown"
"code.gitea.io/gitea/modules/setting"
2014-03-29 19:31:52 +05:30
)
2014-03-29 18:46:06 +05:30
2016-11-24 12:34:31 +05:30
// Markdown render markdown document to HTML
// see https://github.com/gogits/go-gogs-client/wiki/Miscellaneous#render-an-arbitrary-markdown-document
func Markdown(ctx *context.APIContext, form api.MarkdownOption) {
2016-11-25 12:21:01 +05:30
if ctx.HasAPIError() {
ctx.Error(422, "", ctx.GetErrMsg())
2014-05-05 22:38:01 +05:30
return
}
2014-12-11 03:07:54 +05:30
if len(form.Text) == 0 {
ctx.Write([]byte(""))
return
}
2014-05-05 22:38:01 +05:30
switch form.Mode {
case "gfm":
md := []byte(form.Text)
context := markdown.URLJoin(setting.AppURL, form.Context)
if form.Wiki {
ctx.Write([]byte(markdown.RenderWiki(md, context, nil)))
} else {
ctx.Write(markdown.Render(md, context, nil))
}
2014-05-05 22:38:01 +05:30
default:
ctx.Write(markdown.RenderRaw([]byte(form.Text), "", false))
2014-05-05 22:38:01 +05:30
}
}
2016-11-24 12:34:31 +05:30
// MarkdownRaw render raw markdown HTML
// see https://github.com/gogits/go-gogs-client/wiki/Miscellaneous#render-a-markdown-document-in-raw-mode
func MarkdownRaw(ctx *context.APIContext) {
2014-10-19 08:56:55 +05:30
body, err := ctx.Req.Body().Bytes()
2014-05-05 22:38:01 +05:30
if err != nil {
ctx.Error(422, "", err)
2014-05-05 22:38:01 +05:30
return
}
ctx.Write(markdown.RenderRaw(body, "", false))
2014-03-29 18:46:06 +05:30
}