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.
|
|
|
|
|
2014-03-29 19:31:52 +05:30
|
|
|
package v1
|
2014-03-29 18:46:06 +05:30
|
|
|
|
2014-03-29 19:31:52 +05:30
|
|
|
import (
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
|
|
)
|
2014-03-29 18:46:06 +05:30
|
|
|
|
2014-03-29 19:31:52 +05:30
|
|
|
func Markdown(ctx *middleware.Context) {
|
2014-03-29 18:46:06 +05:30
|
|
|
content := ctx.Query("content")
|
|
|
|
ctx.Render.JSON(200, map[string]interface{}{
|
|
|
|
"ok": true,
|
2014-04-07 11:25:22 +05:30
|
|
|
"content": string(base.RenderMarkdown([]byte(content), ctx.Query("repoLink"))),
|
2014-03-29 18:46:06 +05:30
|
|
|
})
|
|
|
|
}
|