1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-02 01:15:48 +00:00
gitea/routers/api/v1/misc/markdown.go

45 lines
1.1 KiB
Go
Raw Normal View History

2014-03-29 13:16:06 +00:00
// 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 13:16:06 +00:00
2014-03-29 14:01:52 +00:00
import (
api "code.gitea.io/sdk/gitea"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/markdown"
2014-03-29 14:01:52 +00:00
)
2014-03-29 13:16:06 +00:00
2016-11-24 07:04:31 +00:00
// 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) {
2014-05-05 17:08:01 +00:00
if ctx.HasApiError() {
ctx.Error(422, "", ctx.GetErrMsg())
2014-05-05 17:08:01 +00:00
return
}
2014-12-10 21:37:54 +00:00
if len(form.Text) == 0 {
ctx.Write([]byte(""))
return
}
2014-05-05 17:08:01 +00:00
switch form.Mode {
case "gfm":
2016-02-20 22:10:05 +00:00
ctx.Write(markdown.Render([]byte(form.Text), form.Context, nil))
2014-05-05 17:08:01 +00:00
default:
2016-02-20 22:10:05 +00:00
ctx.Write(markdown.RenderRaw([]byte(form.Text), ""))
2014-05-05 17:08:01 +00:00
}
}
2016-11-24 07:04:31 +00:00
// 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 03:26:55 +00:00
body, err := ctx.Req.Body().Bytes()
2014-05-05 17:08:01 +00:00
if err != nil {
ctx.Error(422, "", err)
2014-05-05 17:08:01 +00:00
return
}
2016-02-20 22:10:05 +00:00
ctx.Write(markdown.RenderRaw(body, ""))
2014-03-29 13:16:06 +00:00
}