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-11 12:39:44 +03:00
api "code.gitea.io/sdk/gitea"
2015-12-05 01:16:42 +03:00
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/markdown"
2017-02-14 04:13:59 +03:00
"code.gitea.io/gitea/modules/setting"
2014-03-29 18:01:52 +04:00
)
2014-03-29 17:16:06 +04:00
2016-11-24 10:04:31 +03:00
// Markdown render markdown document to HTML
// see 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 ) {
2016-11-25 09:51:01 +03: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" :
2017-02-14 04:13:59 +03:00
ctx . Write ( markdown . Render ( [ ] byte ( form . Text ) , markdown . URLJoin ( setting . AppURL , form . Context ) , nil ) )
2014-05-05 21:08:01 +04:00
default :
2017-02-14 04:13:59 +03:00
ctx . Write ( markdown . RenderRaw ( [ ] byte ( form . Text ) , "" , false ) )
2014-05-05 21:08:01 +04:00
}
}
2016-11-24 10:04:31 +03:00
// MarkdownRaw render raw markdown HTML
// see 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
}
2017-02-14 04:13:59 +03:00
ctx . Write ( markdown . RenderRaw ( body , "" , false ) )
2014-03-29 17:16:06 +04:00
}