Add missing markdown.go
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Peter Stuifzand 2020-05-24 20:43:42 +02:00
parent 3755e42a75
commit 53eaa1c4c7

36
markdown.go Normal file
View File

@ -0,0 +1,36 @@
package main
import (
"bytes"
"gitlab.com/golang-commonmark/markdown"
"github.com/yuin/goldmark"
"github.com/yuin/goldmark/extension"
"github.com/yuin/goldmark/renderer/html"
)
func renderMarkdown(pageText string) string {
md := markdown.New(
markdown.HTML(true),
markdown.XHTMLOutput(true),
)
pageText = md.RenderToString([]byte(pageText))
return pageText
}
func renderMarkdown2(pageText string) string {
md := goldmark.New(
goldmark.WithExtensions(extension.GFM),
goldmark.WithRendererOptions(
html.WithXHTML(),
html.WithUnsafe(),
),
)
var buf bytes.Buffer
if err := md.Convert([]byte(pageText), &buf); err != nil {
panic(err)
}
return buf.String()
}