File tree Expand file tree Collapse file tree 6 files changed +28
-0
lines changed
Expand file tree Collapse file tree 6 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 4545 "require" : " ./build/cjs/pm/*" ,
4646 "import" : " ./build/esm/pm/*"
4747 },
48+ "./markdown-it/*" : {
49+ "types" : " ./build/esm/markdown-it/*" ,
50+ "require" : " ./build/cjs/markdown-it/*" ,
51+ "import" : " ./build/esm/markdown-it/*"
52+ },
4853 "./styles/*" : " ./build/esm/styles/*"
4954 },
5055 "main" : " build/cjs/index.js" ,
6368 ],
6469 "pm/*" : [
6570 " ./build/esm/pm/*"
71+ ],
72+ "markdown-it/*" : [
73+ " ./build/esm/markdown-it/*"
6674 ]
6775 }
6876 },
Original file line number Diff line number Diff line change 1+ import color from 'markdown-it-color' ;
2+
3+ export default color ;
Original file line number Diff line number Diff line change 1+ import ins from 'markdown-it-ins' ;
2+
3+ export default ins ;
Original file line number Diff line number Diff line change 1+ import mark from 'markdown-it-mark' ;
2+
3+ export default mark ;
Original file line number Diff line number Diff line change 1+ ## Markdown-it submodule
2+
3+ ### Re-exports Markdown-it plugins:
4+
5+ - [ markdown-it-color] ( https://github.com/nkjmsss/markdown-it-color )
6+ - [ markdown-it-ins] ( https://github.com/markdown-it/markdown-it-ins )
7+ - [ markdown-it-mark] ( https://github.com/markdown-it/markdown-it-mark )
8+ - [ markdown-it-sub] ( https://github.com/markdown-it/markdown-it-sub )
Original file line number Diff line number Diff line change 1+ import sub from 'markdown-it-sub' ;
2+
3+ export default sub ;
You can’t perform that action at this time.
0 commit comments