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.

14 lines
342 B

  1. // const twemoji = require('twemoji')
  2. // ------------------------------------
  3. // HTML - Twemoji
  4. // ------------------------------------
  5. module.exports = {
  6. init (input, conf) {
  7. // TODO: Must limit to text nodes only (exclude code blocks, already processed emojis, etc.)
  8. //
  9. // return twemoji.parse(input)
  10. return input
  11. }
  12. }