我经常使用的 hexo 命令总结
学习 hexo 命令及我使用的常用命令汇总 文档
新建一篇文章 default _drafts(草稿)
hexo new 'php development environment configuration'
发布一篇草稿
hexo publish draft php-development-environment-configuration
不同设备如何使用 hexo 并发布到 git 上
更新 dotfiles
删除文件
1 | rm -rf node_modules |
对于 permalink: :year:month:day/:title.html 以 .html 结尾的文章链接配置在生成静态页面时,会导致图片路径错误, 修改
node_modules/hexo/lib/models/post_asset.js 文件中的 以下代码使支持 .html 后缀:
1 | var postPath = post.path; |