mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
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())}...)
|
||
|
}
|