安装

在Hexo官网插件中能找到hexo-filter-github-emojis这个插件,安装:

1
npm install hexo-filter-github-emojis --save

配置

在站点配置文件 .config.yml 中增加:

1
2
3
4
5
emoji:
enable: true
className: github-emoji
styles:
customEmojis:

使用方法

输入对应的emoji编码就行了

1
:tada:
🎉

为了避免有时候::带来的解析问题,在front-matter中添加no-emoji: true禁用::,采用tags的方式:

1
2
3
4
5
6
---
no-emoji: true
---
{ % github_emoji tada % } still works.
{ % github_emoji pizza % } is very delicious.
What is this {% github_emoji violin %}?
🎉still works.
🍕is very delicious.
What is this 🎻?
😄

参考资料

插件来自Github
资料参考博客
emoji代码可从Emoji Cheat Sheet寻找