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.
|
|
|
|
|
2015-12-05 03:46:42 +05:30
|
|
|
package misc
|
2014-03-29 18:46:06 +05:30
|
|
|
|
2014-03-29 19:31:52 +05:30
|
|
|
import (
|
2015-12-05 03:46:42 +05:30
|
|
|
api "github.com/gogits/go-gogs-client"
|
|
|
|
|
2014-03-29 19:31:52 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
|
|
)
|
2014-03-29 18:46:06 +05:30
|
|
|
|
2015-12-03 10:54:37 +05:30
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Miscellaneous#render-an-arbitrary-markdown-document
|
2015-12-05 03:46:42 +05:30
|
|
|
func Markdown(ctx *middleware.Context, form api.MarkdownOption) {
|
2014-05-05 22:38:01 +05:30
|
|
|
if ctx.HasApiError() {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(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":
|
2015-12-05 08:00:33 +05:30
|
|
|
ctx.Write(base.RenderMarkdown([]byte(form.Text), form.Context, nil))
|
2014-05-05 22:38:01 +05:30
|
|
|
default:
|
|
|
|
ctx.Write(base.RenderRawMarkdown([]byte(form.Text), ""))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-03 10:54:37 +05:30
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Miscellaneous#render-a-markdown-document-in-raw-mode
|
2014-05-05 22:38:01 +05:30
|
|
|
func MarkdownRaw(ctx *middleware.Context) {
|
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 {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(422, "", err)
|
2014-05-05 22:38:01 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Write(base.RenderRawMarkdown(body, ""))
|
2014-03-29 18:46:06 +05:30
|
|
|
}
|