You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
478 B
19 lines
478 B
11 years ago
|
// 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.
|
||
|
|
||
11 years ago
|
package v1
|
||
11 years ago
|
|
||
11 years ago
|
import (
|
||
|
"github.com/gogits/gogs/modules/base"
|
||
|
"github.com/gogits/gogs/modules/middleware"
|
||
|
)
|
||
11 years ago
|
|
||
11 years ago
|
func Markdown(ctx *middleware.Context) {
|
||
11 years ago
|
content := ctx.Query("content")
|
||
|
ctx.Render.JSON(200, map[string]interface{}{
|
||
|
"ok": true,
|
||
11 years ago
|
"content": string(base.RenderMarkdown([]byte(content), "")),
|
||
11 years ago
|
})
|
||
|
}
|