smartmarkdown/ts/smartmarkdown.plugins.ts

14 lines
366 B
TypeScript
Raw Normal View History

2021-10-04 11:35:20 +00:00
// third party remark
import remark from 'remark';
2021-10-04 11:54:59 +00:00
import remarkFrontmatter from 'remark-frontmatter';
2021-10-04 11:35:20 +00:00
import remarkHtml from 'remark-html';
2021-10-04 11:54:59 +00:00
export { remark, remarkFrontmatter, remarkHtml };
2021-10-04 11:35:20 +00:00
// other third party stuff
import turndown from 'turndown';
2021-10-04 11:35:20 +00:00
// @ts-ignore
2019-06-17 12:41:57 +00:00
import * as turndownPluginGfm from 'turndown-plugin-gfm';
2018-09-22 22:21:31 +00:00
2021-10-04 11:35:20 +00:00
export { turndown, turndownPluginGfm };