remark.mjs 369 B

123456789101112131415161718192021
  1. import {remark} from 'remark'
  2. import parse from 'remark-parse'
  3. import stringify from 'remark-stringify'
  4. import gfm from 'remark-gfm'
  5. import breaks from 'remark-breaks'
  6. import html from 'remark-html'
  7. import slug from 'remark-slug'
  8. import frontmatter from 'remark-frontmatter'
  9. export {
  10. remark,
  11. parse,
  12. stringify,
  13. gfm,
  14. breaks,
  15. html,
  16. slug,
  17. frontmatter,
  18. }