forked from i-boke/hugo-blog-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
115 lines (99 loc) · 3.47 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
baseurl: https://hugo-blog-start.pages.dev/ #网站域名
languageCode: zh-cn
theme: hugo-theme-stack # 主题名称
paginate: 5 # 每页文章数
title: Hugo 演示站点 # 网站标题
languages: # 多语言配置
zh-cn:
languageName: 中文
title: 演示站点
description: 演示说明
weight: 2 # 语言权重
DefaultContentLanguage: zh-cn
# 如果DefaultContentLanguage是[zh-cn ja ko]之一,则设置hasCJKLanguage为true
# 这将使CJK语言的.Summary和.WordCount正确工作。
hasCJKLanguage: true
permalinks:
post: /p/:slug/ # 文章永久链接格式
page: /:slug/ # 页面永久链接格式
params: # 参数配置
mainSections:
- post # 首页展示主要内容类型
featuredImageField: image
rssFullContent: true # 是否在RSS中全文展示内容
dateFormat: # 时间格式
published: Jan 02, 2006
lastUpdated: Jan 02, 2006 15:04 MST
sidebar: # 侧边栏配置
emoji: 🍥
subtitle: Hugo 演示站点
avatar:
enabled: true
local: true
src: img/avatar.png
article: # 文章详情页配置
math: false
toc: true # 是否展示目录
readingTime: true # 是否展示阅读时间
license:
enabled: true
default: Licensed under CC BY-NC-SA 4.0 # 文章版权声明
widgets: # 小工具配置
homepage:
- type: search
- type: archives
params:
limit: 5
- type: categories
params:
limit: 10
- type: tag-cloud
params:
limit: 10
page:
- type: toc # 页面目录
colorScheme: # 颜色主题
toggle: true # 是否开启暗黑模式切换
default: auto # 默认颜色主题
imageProcessing: # 图片处理配置
cover:
enabled: true
content:
enabled: true
### 自定义菜单
### 参见 https://docs.stack.jimmycai.com/configuration/custom-menu.html
### 如果要删除“关于”、“归档”和“搜索”页面菜单项,请从其FrontMatter中删除“menu”字段
menu:
main: [] # 主菜单
social: # 社交链接
- identifier: github
name: GitHub
url: https://github.com/grayit0
params:
icon: brand-github
related: # 相关文章配置
includeNewer: true # 是否包含更新的文章
threshold: 60 # 相似度阈值
toLower: false # 是否忽略大小写
indices:
- name: tags # 相关性计算所使用的索引
weight: 100
- name: categories
weight: 200
markup: # 标记语言配置
goldmark:
renderer:
## 如果Markdown中有HTML内容,请将其设置为true
unsafe: false
tableOfContents: # 目录生成器设置
endLevel: 4
ordered: true # 是否使用有序列表
startLevel: 2
highlight: # 代码高亮设置
noClasses: false
codeFences: true
guessSyntax: true
lineNoStart: 1
lineNos: true # 是否显示行号
lineNumbersInTable: true
tabWidth: 4