效果
1 | hexo new -p blog/hexo自动生成分类 |
在Front-matter自动生成
1 | categories: |
修改Front-matter模板
scaffolds\post.md
,添加
1 | categories:{{ categories }} |
修改库函数
hexo new命令对应的js文件:node_modules\hexo\dist\plugins\console\new.js
在newConsole
函数中,return前加入
1 | let splitted_path=path.split('/') |