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