wiki/markdown.go
Peter Stuifzand 5e0a11f6f4
Some checks failed
continuous-integration/drone/push Build is failing
Add <mark> element ==test==
2020-07-01 22:36:25 +02:00

31 lines
515 B
Go

package main
import (
"bytes"
"github.com/yuin/goldmark"
"github.com/yuin/goldmark/extension"
"github.com/yuin/goldmark/renderer/html"
"p83.nl/go/wiki/markdown"
)
func renderMarkdown2(pageText string) string {
md := goldmark.New(
goldmark.WithExtensions(extension.GFM),
goldmark.WithRendererOptions(
html.WithXHTML(),
html.WithUnsafe(),
),
)
markdown.Mark.Extend(md)
var buf bytes.Buffer
if err := md.Convert([]byte(pageText), &buf); err != nil {
panic(err)
}
return buf.String()
}