1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-10-30 19:56:16 +00:00
mycorrhiza/plugin/parser/markdown.go
2020-07-04 22:17:08 +05:00

11 lines
201 B
Go

package parser
import (
"github.com/bouncepaw/mycorrhiza/util"
"gopkg.in/russross/blackfriday.v2"
)
func MarkdownToHtml(md []byte) string {
return string(blackfriday.Run(util.NormalizeEOL(md)))
}