fix(core): update

This commit is contained in:
2022-05-20 16:03:35 +02:00
parent 23f2cc9e6d
commit 92a1b589e7
7 changed files with 542 additions and 63 deletions

View File

@@ -1,9 +1,19 @@
// third party remark
import * as remark from 'remark';
import * as remarkFrontmatter from 'remark-frontmatter';
import * as remarkHtml from 'remark-html';
// pushrocks scope
import * as smartyaml from '@pushrocks/smartyaml';
export { remark, remarkFrontmatter, remarkHtml };
export {
smartyaml
}
// third party remark
import { unified } from 'unified';
import remarkGfm from 'remark-gfm';
import remarkParse from 'remark-parse';
import remarkFrontmatter from 'remark-frontmatter';
import remarkHtml from 'remark-html';
import remarkStringify from 'remark-stringify';
export { unified, remarkGfm, remarkParse, remarkFrontmatter, remarkHtml, remarkStringify };
// other third party stuff
import turndown from 'turndown';