博客的搭建

在搭建博客的过程中,主要参考资料如下:

1.使用Github Pages和Hexo搭建博客

https://juejin.im/entry/5a574864f265da3e3c6c1217

2.配置Hexo主题next

设置头像、标签等。。。

https://www.jianshu.com/p/d95cff938277

设置动态背景

https://blog.csdn.net/qq_32454537/article/details/79482896

设置友情链接

https://www.jianshu.com/p/5973c05d7100

设置侧边栏社交链接(如github等)

添加访问次数统计

补充

设置首页隐藏指定文章

设置首页显示摘要

文章内容中插入一行——

<!-- more -->

该标签之上的文本为摘要,需点击阅读全文才能查看剩余的内容。另外也可以在_config.yml配置文件中设置每页显示多少篇文章。

设置图片居中显示

对于 Next 主题的 Mist,设置方法如下(其他主题可以寻找到相似文件进行修改):

  • 打开 themes/next/source/css/_schemes/Mist/_posts-expanded.styl 文件;
  • 找到 .posts-expand 中的 .post-body img { margin: 0; },
  • 将之修改为 .post-body img { margin: 0 auto; } 即可。

hexo添加live2d看板动画

  1. 参考链接:

    https://www.jianshu.com/p/3a6342e16e57

  1. 好看的模板推荐:hibiki、haruto、epsilon、hijiki、koharu、nico、tororo、unitychan、wanko。

3.关于md(Markdown)文件编辑器

https://www.jianshu.com/p/d4e331770e60

注1:

  • 在线markdown编辑

  • 在win10环境下使用md编辑器MarkdownPad可能会出现报错如下图——

  • 解决方式在官方文档中给出了说明(我在安装了Awesomium 1.6.6 SDK后就解决了该问题)——

LivePreview is not working – it displays an error message stating This view has crashed!This issue has been specifically observed in Windows 8. You may see an error message as below, and no HTML will be rendered when you type in the Markdown Editor pane.To fix this issue, please try installing the Awesomium 1.6.6 SDK.If you continue to experience issues, please install Microsoft’s DirectX End-User Runtimes (June 2010).

注2: