0%

hexo写作

换了个主题还是用了next,还行吧,先用着

tips:

 1.  首先`<!-- more -->`可以用来在主页隐藏剩下篇幅,展示"read more"

hexo创建文章

然后记录一下hexo写blog的方式:

  1. 创建新文章

    hexo new aritle 'your_aritle_name' 然后就是用md格式写blog

  2. 创建新页面

    hexo new page your_page_name

    然后可以去$(blog_root)/themes/next/_config.yml menu下面开启(新增)这个新建的页面,本质依旧是markdown文档

  3. categories & tags

    区别categories可以嵌套使用,tags是平级的存在

    • foo的下级目录是bar
    1
    2
    3
    categories:
    - foo
    - bar
    • foo,bar是平级的tag
    1
    2
    3
    tags:
    - foo
    - bar

使用评论系统 Disqus

参考文章

  1. 注册disqus,这里我选的是直接用google帐号登录
  2. 获取到shortname之后填入$(blog_root)/themes/next/_config.yml
  3. 然后重新部署下就行

需要注意的是比如页面不希望出现评论可以在font-matter中comments: false