mirror of
https://github.com/Luzifer/korvike.git
synced 2024-11-08 15:30:05 +00:00
10 lines
201 B
Go
10 lines
201 B
Go
|
package functions
|
||
|
|
||
|
import "github.com/russross/blackfriday/v2"
|
||
|
|
||
|
func init() {
|
||
|
registerFunction("markdown", func(name string, v ...string) string {
|
||
|
return string(blackfriday.Run([]byte(name)))
|
||
|
})
|
||
|
}
|