1
0
Fork 0
mirror of https://github.com/Luzifer/korvike.git synced 2024-11-08 15:30:05 +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)))
})
}