You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/markdown.go

29 lines
478 B

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