mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-10-31 04:06:16 +00:00
11 lines
201 B
Go
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)))
|
|
}
|