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

19 lines
497 B
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.
2014-03-29 14:01:52 +00:00
package v1
2014-03-29 13:16:06 +00:00
2014-03-29 14:01:52 +00:00
import (
"github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/middleware"
)
2014-03-29 13:16:06 +00:00
2014-03-29 14:01:52 +00:00
func Markdown(ctx *middleware.Context) {
2014-03-29 13:16:06 +00:00
content := ctx.Query("content")
ctx.Render.JSON(200, map[string]interface{}{
"ok": true,
"content": string(base.RenderMarkdown([]byte(content), ctx.Query("repoLink"))),
2014-03-29 13:16:06 +00:00
})
}