Hugo Markdown
约 251 字
预计阅读 1 分钟
次阅读
Hugo Markdown
说明文档
Hugo中文文档
本地服务预览
Front Matter
官方文档Front Matter
Front Matter范例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
weight: 1 #权重排序
title: "文章标题" #标题
date: 2021-09-11T21:57:40+08:00 #日期
lastmod: 2021-09-14T16:45:40+08:00 #更新日期
draft: false #表示是否是草稿,编辑完成后请将其改为 false
author: "ccjee" #作者
authorLink: "https://dillonzq.com" #作者链接
description: "内容描述" #内容描述
resources:
- name: "featured-image"
src: "featured-image.png"
tags: ["Markdown","blog","hugo","GitHub Pages","Github Actions"] #标签
categories: ["编程"] #分类
keywords: #关键词
- 关键词
showless: true #设置部分内容可访问
mermaid: true #为true时通过脑图渲染节点
lightgallery: true #支持触屏滑动的响应式相册
toc: #目录导航
auto: false
---
|