You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* MIT ([LICENSE-MIT](LICENSE-MIT) / http://opensource.org/licenses/MIT)
60
-
61
-
## Contribution
62
-
63
-
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
64
-
`
65
-
66
-
/**
67
-
* @param {string} md
68
-
*/
69
-
functionparseMarkdown(md){
70
-
returnfromMarkdown(md,{
71
-
extensions: [
72
-
gfm(),
73
-
gfmTable,
74
-
gfmFootnote(),
75
-
gfmStrikethrough(),
76
-
gfmTaskListItem
77
-
],
78
-
mdastExtensions: [
79
-
gfmFromMarkdown(),
80
-
gfmTableFromMarkdown,
81
-
gfmFootnoteFromMarkdown(),
82
-
gfmStrikethroughFromMarkdown,
83
-
gfmTaskListItemFromMarkdown
84
-
]
85
-
})
86
-
}
87
-
88
-
/**
89
-
*
90
-
* @param {import('mdast').Root | import('mdast').Content} tree
* MIT ([LICENSE-MIT](LICENSE-MIT) / http://opensource.org/licenses/MIT)
11
+
12
+
## Contribution
13
+
14
+
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
0 commit comments