forked from gitea/gitea
1
0
Fork 0
gitea/routers/api/v1/misc/markdown.go

43 lines
1.0 KiB
Go
Raw Normal View History

2014-03-29 21:16:06 +08: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 21:16:06 +08:00
2014-03-29 22:01:52 +08:00
import (
api "github.com/gogits/go-gogs-client"
2016-03-12 00:56:52 +08:00
"github.com/gogits/gogs/modules/context"
2016-02-21 06:10:05 +08:00
"github.com/gogits/gogs/modules/markdown"
2014-03-29 22:01:52 +08:00
)
2014-03-29 21:16:06 +08:00
2015-12-03 13:24:37 +08:00
// https://github.com/gogits/go-gogs-client/wiki/Miscellaneous#render-an-arbitrary-markdown-document
2016-03-12 00:56:52 +08:00
func Markdown(ctx *context.Context, form api.MarkdownOption) {
2014-05-06 01:08:01 +08:00
if ctx.HasApiError() {
2015-10-09 08:36:07 +08:00
ctx.APIError(422, "", ctx.GetErrMsg())
2014-05-06 01:08:01 +08:00
return
}
2014-12-11 05:37:54 +08:00
if len(form.Text) == 0 {
ctx.Write([]byte(""))
return
}
2014-05-06 01:08:01 +08:00
switch form.Mode {
case "gfm":
2016-02-21 06:10:05 +08:00
ctx.Write(markdown.Render([]byte(form.Text), form.Context, nil))
2014-05-06 01:08:01 +08:00
default:
2016-02-21 06:10:05 +08:00
ctx.Write(markdown.RenderRaw([]byte(form.Text), ""))
2014-05-06 01:08:01 +08:00
}
}
2015-12-03 13:24:37 +08:00
// https://github.com/gogits/go-gogs-client/wiki/Miscellaneous#render-a-markdown-document-in-raw-mode
2016-03-12 00:56:52 +08:00
func MarkdownRaw(ctx *context.Context) {
2014-10-19 11:26:55 +08:00
body, err := ctx.Req.Body().Bytes()
2014-05-06 01:08:01 +08:00
if err != nil {
2015-10-09 08:36:07 +08:00
ctx.APIError(422, "", err)
2014-05-06 01:08:01 +08:00
return
}
2016-02-21 06:10:05 +08:00
ctx.Write(markdown.RenderRaw(body, ""))
2014-03-29 21:16:06 +08:00
}