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