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.
18 lines
304 B
18 lines
304 B
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)
|
|
}
|
|
|