You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
forgejo/routers/api/v1/miscellaneous.go

46 lines
1.1 KiB
Go

// 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 v1
import (
10 years ago
"strings"
"github.com/gogits/gogs/modules/auth/apiv1"
"github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/middleware"
10 years ago
"github.com/gogits/gogs/modules/setting"
)
10 years ago
// Render an arbitrary Markdown document.
func Markdown(ctx *middleware.Context, form apiv1.MarkdownForm) {
if ctx.HasApiError() {
ctx.JSON(422, base.ApiJsonErr{ctx.GetErrMsg(), base.DOC_URL})
10 years ago
return
}
if len(form.Text) == 0 {
ctx.Write([]byte(""))
return
}
10 years ago
switch form.Mode {
case "gfm":
ctx.Write(base.RenderMarkdown([]byte(form.Text),
10 years ago
setting.AppUrl+strings.TrimPrefix(form.Context, "/")))
10 years ago
default:
ctx.Write(base.RenderRawMarkdown([]byte(form.Text), ""))
}
}
// Render a Markdown document in raw mode.
func MarkdownRaw(ctx *middleware.Context) {
10 years ago
body, err := ctx.Req.Body().Bytes()
10 years ago
if err != nil {
ctx.JSON(422, base.ApiJsonErr{err.Error(), base.DOC_URL})
10 years ago
return
}
ctx.Write(base.RenderRawMarkdown(body, ""))
}