You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
285 B

  1. const mdEmoji = require('markdown-it-emoji')
  2. // ------------------------------------
  3. // Markdown - Emoji
  4. // ------------------------------------
  5. module.exports = {
  6. key: 'markdown/emoji',
  7. title: 'Emoji',
  8. dependsOn: [],
  9. props: [],
  10. init (md, conf) {
  11. md.use(mdEmoji)
  12. }
  13. }