1
0
mirror of https://github.com/Luzifer/korvike.git synced 2024-09-20 09:22:58 +00:00
korvike/functions/func_markdown.go

10 lines
201 B
Go
Raw Normal View History

package functions
import "github.com/russross/blackfriday/v2"
func init() {
registerFunction("markdown", func(name string, v ...string) string {
return string(blackfriday.Run([]byte(name)))
})
}