hexo写作笔记

hexo写作&心得笔记

零零碎碎写了这么些个文章,也着实费了些心思,对一些发现做点笔记

hexo管理

语法

hexo

  • clean:清除缓存
  • new:生成新文档(带模板)
  • g:等同于generate,生成文件
  • d:等同于deploy,git部署
  • s:等同于server,开启本地预览localhost:4000
  • –debug: 开启debug
  • -g,-s,-d:可同时执行多命令
Remove generated files and cache.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  config    Get or set configurations.
deploy Deploy your website.
generate Generate static files.
help Get help on a command.
init Create a new Hexo folder.
list List the information of the site
migrate Migrate your site from other system to Hexo.
new Create a new post.
publish Moves a draft post from _drafts to _posts folder.
render Render files with renderer plugins.
server Start the server.
version Display version information.

Global Options:
--config Specify config file instead of using _config.yml
--cwd Specify the CWD
--debug Display all verbose messages in the terminal
--draft Display draft posts
--safe Disable all plugins and scripts
--silent Hide output on console

文章标注

标签

  • 多标签语法形如tags: [blog,心得]

分类

  • 多分类&多级分类::用格式语法标记,如标记在idea和a下的b内

    1
    2
    3
    categories: 
    - [idea]
    - [a,b]

密码

版权声明

  • 经过我的优化,post文章默认有版权声明,只要在不需要版权声明的部分标注nocopyright: true,参见hexo配置经历

置顶排序

  • top值默认为零,需置顶就调大top,参见hexo配置经历

  • 刚发现next自带有这个功能。。。标注sticky:值就好

  • //看GitHub issue作者已经因为BUG又把这个功能去掉了(捂脸),现在没有了置顶功能,不过标注sticky会在文章前增加图钉的图标。所以要

    top值和sticky值默认为零,需置顶就调大top和sticky,参见[hexo配置经历](/2018/01/02/hexo%20与nexT配置经历/)

  • Netcan_Space的解决Hexo置顶问题给出了一种新方案 ,可用性有待尝试已验证,执行

    npm install hexo-generator-index-pin-top --save
    1
    npm install hexo-generator-index-pin-top --save

    top值和sticky值默认为零,需排序就调大top,要置顶图标设sticky(注意sticky不能排序)

-------------本文结束感谢您的阅读-------------
您的支持将鼓励我继续创作!