Hexo博客笔记书写Front-matter参数大全


常见Front-matter

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
title: typora-vue-theme主题介绍
date: 2018-09-07 09:25:00
author: 长白崎
img: /source/images/xxx.jpg
top: true
hide: false
cover: true
published: false
coverImg: /images/1.jpg
password: 8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92
toc: false
mathjax: false
summary: 这是你自定义的文章摘要内容,如果这个属性有值,文章卡片摘要就显示这段文字,否则程序会自动截取文章的部分内容作为摘要
categories: Markdown
tags:
- Typora
- Markdown
---

参数说明

  • title 文章标题
  • date 文章发布时间
  • author 文章作者
  • img 标题图片
  • top 是否置顶true为置顶
  • hide 是否隐藏文章true为隐藏
  • published 是否公开文章false为不公开

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment