mirror of
https://github.com/strongdm/comply
synced 2024-11-06 07:55:26 +00:00
7468711b3b
Releases after github.com/xanzy/go-gitlab@v0.31.0 introduce breaking changes to the NewClient call. Addresses #94
15 lines
353 B
Go
15 lines
353 B
Go
package md2man
|
|
|
|
import (
|
|
"github.com/russross/blackfriday/v2"
|
|
)
|
|
|
|
// Render converts a markdown document into a roff formatted document.
|
|
func Render(doc []byte) []byte {
|
|
renderer := NewRoffRenderer()
|
|
|
|
return blackfriday.Run(doc,
|
|
[]blackfriday.Option{blackfriday.WithRenderer(renderer),
|
|
blackfriday.WithExtensions(renderer.GetExtensions())}...)
|
|
}
|