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.
19 lines
304 B
19 lines
304 B
5 years ago
|
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)
|
||
|
}
|