转载链接:
[git/github学习笔记]
http://www.cnblogs.com/fnng/archive/2011/08/25/2153807.html
适合新手的 GitHub + Hexo 「大话」博客搭建教程
https://smartbeng.github.io/2017/03/26/blogFinish/
Jacman的简介
https://github.com/wuchong/jacman/blob/master/README_zh.md
hexo文档
https://hexo.io/zh-cn/docs/configuration.html
hexo系列文章
http://www.jianshu.com/p/a2fe56d11c4f
http://blog.csdn.net/willxue123/article/category/6154589
[图床神器]Windows下的图片上传工具MPic
http://www.jianshu.com/p/d0bd91d38011
如何利用七牛云在线存储图片
http://blog.csdn.net/gs6511/article/details/64124999
更多主题:[http://hexo.io/themes/]
https://github.com/iissnan/hexo-theme-next
http://blog.csdn.net/willxue123/article/details/50994852
博客图标网(http://fontawesome.io/icons/)
hexo之next主题优化整理
http://www.jianshu.com/p/ba61be039c1f
Hexo-Next底部powered by的logo栏更改以及注意事项
http://www.jianshu.com/p/4fbc57269f1b
遇到的问题解决:
《1》ERROR Script load failed: themes/hexo-theme-next/scripts/tags/exturl.js
http://blog.csdn.net/xiongshengwu/article/details/60961073
《2》$ hexo g Usage: hexo <command> 原因是根目录问题
$ cd D:/ProgramFiles/hexo
《3》hexo YAMLException: cannot read a block mapping entry; a multi line key may not be an implicit key a
原因:切换英文,《:》分号和空格都是在英文下
《4》hexo TypeError: The header content contains invalid characters
解决:http://www.opscaff.com/2017/02/15/Hexo-%E4%B8%AD%E6%96%87Url-%E6%8A%A5%E9%94%99The-header-content-contains-invalid-characters/
位置:node_modules/hexo-server/lib/middlewares/route.js 代码发现报错的第27行有SetHeader代码 发现是重定向的url有中文未做encode随即修改代码解决
//res.setHeader('Location', root + url + '/');
res.setHeader('Location', root + encodeURIComponent(url) + '/');
《5》 cannot get /home/
解决:执行hexo new page "categories",初始化分类目录
http://www.cnblogs.com/Sroot/p/6305938.html
《6》解决hexo博客的乱码问题
http://blog.csdn.net/jiluben/article/details/40656935
将博客文件保存为UTF-8即可解决问题。
如果写的文章显示不出来,一定先查看【:】后面是不是有一空格,有一格的距离再有内容【一定注意】
方法:
1.将博客文件保存为UTF-8
一定使用记事本打开本地的博客文件“xxx.md”,然后点“另存为”,
在另存为页面的最下面有编码(E)选项,选择“UTF-8”,点击“保存”,
会提示替换原文件,点击“是“y””即可。
2.重新生成,部署,博客乱码即消除。