Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
保留上面一段话,是 Hexo 自带的文章中的一段,以后不会了,可以快速找到文档。
也许半年才想起来敲两个文字,所以先把教程写好吧,到时候别想写字的时候,不知道怎么使用软件了。
首先在 hexo 文件夹下打开 git。
创建新的文章
$ hexo new "文章名称"
文章使用日期命名,如“20240515”,文章保存在“hexo/source/_posts”文件夹下,然后可以使用 markdown 编辑软件,打开刚才创建的文件,进行编辑。
文章 Front-matter 选项详解
---
title: 这是文章的标题
date: 2018-09-07 09:25:00 #文章创建时间
author: 作者
img: /source/images/xxx.jpg #文章特征图
top: true # 推荐文章(文章是否置顶),如果 top 值为 true,则会作为首页推荐文章
cover: true # 表示该文章是否需要加入到首页轮播封面中
coverImg: /images/1.jpg # 表示该文章在首页轮播封面需要显示的图片路径
summary: 这是你自定义的文章摘要内容,如果这个属性有值,文章卡片摘要就显示这段文字,否则程序会自动截取文章的部分内容作为摘要
categories: Markdown # 文章分类
tags: # 文章标签
- Typora
- Markdown
---
清理缓存
$ hexo clean
生成静态页面
$ hexo g
推送到服务器
$ hexo d
用到的功能不多,基本就是平时记录一下文字,以上几条命令足够了。