默认hexo是不支持emoji的,需要安装插件。

安装插件

npm install hexo-filter-emoji

配置hexo的_config.yml文件

添加如下配置:

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

之后清理缓存,重新生成一份静态文件,执行hexo clean hexo g hexo s就可以通过http://localhost:4000 看到效果了😁


参考

hexo-filter-emoji