mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			361 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			361 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()),
 | 
						|
		}...)
 | 
						|
}
 |