smartmarkdown/ts/smartmarkdown.plugins.ts
2022-05-19 09:36:59 +02:00

14 lines
381 B
TypeScript

// third party remark
import * as remark from 'remark';
import * as remarkFrontmatter from 'remark-frontmatter';
import * as remarkHtml from 'remark-html';
export { remark, remarkFrontmatter, remarkHtml };
// other third party stuff
import turndown from 'turndown';
// @ts-ignore
import * as turndownPluginGfm from 'turndown-plugin-gfm';
export { turndown, turndownPluginGfm };