默认主题是landscape,在themes文件夹下,可以使用别人开发好的主题,这里有很多,我使用的是这一个https://github.com/litten/hexo-theme-yilia
下载之后放到themes文件夹下即可:git clone git@github.com:litten/hexo-theme-yilia.git
markdown是用hexo写博客的可选文本格式之一,通常我们用hexo new xxx来创建一篇新的post。md编辑器有很多,预览我们hexo项目中的md文章的方法也有很多,我的方案是编辑与预览都在vscode中完成。
这里要先提一下在hexo3.0版本中编写md文件时新的图片插入方式:只要在_config.yml中添加post_asset_folder: true,就会在生成新post时创建一个同名文件夹;在md中输入,就可以插入这个文件夹中的图片。(这种方式较之以前把图片放在source/images,方式更整洁,图片随文章分类)
vscode有很多md的插件,这里推荐两个插件,并针对hexo做一些配置调整,以满足插入图片与预览md的需求:
tag:
缺失模块。
1、请确保node版本大于6.2
2、在博客根目录(注意不是yilia根目录)执行以下命令:
npm i hexo-generator-json-content --save
3、在根目录_config.yml里添加配置:
jsonContent: meta: false pages: false posts: title: true date: true path: true text: false raw: false content: false slug: false updated: false comments: false link: false permalink: false excerpt: false categories: false tags: true