hexo self-defined new blog path

Preface

  • 之前使用hexo new时,生成的是按照年/月/title.md的方式,查看起来比较费劲
  • 解决自己想按照categories来生成新文章path的方法,这样查看之前写过的文章的时候会比较方便
  • 一个categories下面文章过多之后,在考虑后续的处理方法。目前暂时能想到的是按年将之前的文章分类,这个工作量不会大,故目前的categories path的方式可行。

如何做

  • 修改_config.yml中的配置

    #Writing
    new_post_name: :categories/:title.md # File name of new posts

  • hexo new “title.md” –categories, 即可。然后categories就会写入blog,并且生成路径会按照categories来。

  • 配置default_category: uncategorized,可使用默认值
  • 可以使用的变量可以参考:hexo变量
  • 可以使用–variableName variableValue的方式来向hexo中赋值变量,用于new blog path,挺好玩的。
    • 不知道能否覆盖default variable,如时间?

待完善的地方

  • categories是支持多个的,如果multi value会怎么样?