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