Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-remark-emoji-unicode

Convert emoji code to unicode in markdown files :tada: -> 🎉

Install

npm install --save gatsby-remark-emoji-unicode

Note: You also need to have gatsby-transformer-remark to transform markdown files first.

How to use

In your gatsby-config.js

module.exports = {
  plugins: [
    `gatsby-transformer-yaml`,
    {
      resolve: `gatsby-transformer-remark`,
      options: {
        plugins: [`gatsby-remark-emoji-unicode`],
      },
    },
  ],
}
© 2023 Gatsby, Inc.