UNPKG
markdown-it-git-graph
Version:
latest (0.2.2)
0.2.2
0.2.1
0.2.0
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
一个markdown-it插件,用于生成git提交图
github.com/whlit/markdown-it-git-graph
whlit/markdown-it-git-graph
markdown-it-git-graph
/
dist
/
cjs
/
plugin.d.ts
5 lines
(4 loc)
•
220 B
TypeScript
View Raw
1
2
3
4
5
import
type
{
PluginWithOptions
}
from
'markdown-it'
;
import
type
{
MarkdownItGitGraphOptions
}
from
'./options.js'
;
declare
const
GitGraphPlugin
:
PluginWithOptions
<
MarkdownItGitGraphOptions
>;
export
{
GitGraphPlugin
};