mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-03 18:42:25 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			304 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			304 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package extension
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/yuin/goldmark"
 | 
						|
)
 | 
						|
 | 
						|
type gfm struct {
 | 
						|
}
 | 
						|
 | 
						|
// GFM is an extension that provides Github Flavored markdown functionalities.
 | 
						|
var GFM = &gfm{}
 | 
						|
 | 
						|
func (e *gfm) Extend(m goldmark.Markdown) {
 | 
						|
	Linkify.Extend(m)
 | 
						|
	Table.Extend(m)
 | 
						|
	Strikethrough.Extend(m)
 | 
						|
	TaskList.Extend(m)
 | 
						|
}
 |