迁移到Hexo之后首要的是先学习MD语法其次再慢慢的安装一些适合的插件,这里就慢慢的列出来吧

订阅

首先是订阅订阅插件, 虽然没什么人看为了方便还是提供一下这个功能吧 嘻嘻~

  1. 在你的项目文件的根目录执行,先安装hexo-generator-feed插件
    1
    npm install --save hexo-generator-feed
  2. 编辑Hexo的配置文件_config.yml
    1
    vim _config.yml
    找到#Extensions 之后添加变成这样
    1
    2
    3
    4
    5
    6
    7
    8
    9
    # Extensions
    ## Plugins: https://hexo.io/plugins/
    ## Themes: https://hexo.io/themes/
    plugins: hexo-generate-feed
    #Feed Atom
    feed:
    type: atom
    path: atom.xml
    limit: 20
  3. 生成rss文件就可以看到效果了
    1
    hexo g
    之后就可以看到/public/atom.xml已经按照上面配置的参数生成了

字数统计

  1. 安装hexo-wordcount字数统计
    1
    npm install hexo-wordcount --save
  2. 随便在footer或者什么通用文件的最下面加入
    1
    <span class="post-count">Words count: wordcount(site) 字</span>
  • notice *
    这里可能会遇见Error: Unable to call wordcount, which is undefined or falsey的问题那是因为node版本太低所致
    可以安装低版本的words count或者升级node

查看升级Node

然后嫩,悲剧的事情发生了导致npm直接command not found: npm这就是后话了可以查看杯具