官方配置教程:Butterfly 安裝文檔(一) 快速開始
安装
- 进入Hexo博客根目录
- 下载主题
git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly
- 启用主题,将根目录
_config.yml
文件主题部分设置为butterfly
theme: butterfly
- 安装插件
npm install hexo-renderer-pug hexo-renderer-stylus --save
- 将
themes/butterfly/_config.yml
文件复制到在Hexo博客根目录并改名为_config.butterfly.yml
cp themes/butterfly/_config.yml _config.butterfly.yml
配置
详情参考官方教程,需要注意有些功能要安装额外的插件。
Math数学
- 启用
KaTex
时,需要卸载和安装以下插件
npm un hexo-renderer-marked --save # 如果有安裝這個的話,卸載
npm un hexo-renderer-kramed --save # 如果有安裝這個的話,卸載
npm i hexo-renderer-markdown-it --save # 需要安裝這個渲染插件
npm install katex @renbaoshuo/markdown-it-katex #需要安裝這個katex插件
- 在Hexo根目录的
_config.yml
中配置如下信息
markdown:
plugins:
- '@renbaoshuo/markdown-it-katex'
字数统计
- 进入Hexo根目录,安装以下插件
npm install hexo-wordcount --save
- 修改
主题配置文件
wordcount:
enable: true
post_wordcount: true
min2read: true
total_wordcount: true
评论 (0)