// 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.packagemiscimport(api"github.com/gogs/go-gogs-client""github.com/gogs/gogs/pkg/context""github.com/gogs/gogs/pkg/markup")// https://github.com/gogs/go-gogs-client/wiki/Miscellaneous#render-an-arbitrary-markdown-documentfuncMarkdown(c*context.APIContext,formapi.MarkdownOption){ifc.HasApiError(){c.Error(422,"",c.GetErrMsg())return}iflen(form.Text)==0{c.Write([]byte(""))return}switchform.Mode{case"gfm":c.Write(markup.Markdown([]byte(form.Text),form.Context,nil))default:c.Write(markup.RawMarkdown([]byte(form.Text),""))}}// https://github.com/gogs/go-gogs-client/wiki/Miscellaneous#render-a-markdown-document-in-raw-modefuncMarkdownRaw(c*context.APIContext){body,err:=c.Req.Body().Bytes()iferr!=nil{c.Error(422,"",err)return}c.Write(markup.RawMarkdown(body,""))}