You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							14 lines
						
					
					
						
							353 B
						
					
					
				
			
		
		
	
	
							14 lines
						
					
					
						
							353 B
						
					
					
				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())}...)
 | 
						|
}
 | 
						|
 |