1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-12-19 20:46:29 +00:00
go-mtree/vendor/github.com/cpuguy83/go-md2man/v2/md2man/md2man.go
Vincent Batts 5383508885
go*: update modules
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2024-10-24 17:33:51 +00:00

23 lines
511 B
Go

package md2man
import (
"os"
"strconv"
"github.com/russross/blackfriday/v2"
)
// Render converts a markdown document into a roff formatted document.
func Render(doc []byte) []byte {
renderer := NewRoffRenderer()
var r blackfriday.Renderer = renderer
if v, _ := strconv.ParseBool(os.Getenv("MD2MAN_DEBUG")); v {
r = &debugDecorator{Renderer: r}
}
return blackfriday.Run(doc,
[]blackfriday.Option{
blackfriday.WithRenderer(r),
blackfriday.WithExtensions(renderer.GetExtensions()),
}...)
}