-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
74 lines (62 loc) · 1.56 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
# * Site
staticDir: static
layoutDir: templates
ignoreFiles:
- README\.md$
- readme\.md$
- README\.org$
- readme\.org$
baseURL: https://kisaragi-hiu.com
enableGitInfo: true
title: Kisaragi Hiu
author:
name: Kisaragi Hiu
# * Content
# Let's say it's 2021-05-25T00:30:00+0900 right now, and I have a new
# page dated 2021-05-25. Hugo will consider that moment as being in
# the future; it seems to assume the date to be UTC
# (2021-05-25T00:00:00Z, or 2021-05-25T09:00:00+0900) as the it
# contains no timezone offset.
#
# If I don't want something to show, I'll mark it as Draft myself.
buildFuture: true
markup:
goldmark:
renderer:
unsafe: true
highlight:
lineNos: false
# We need this to use CSS to style syntax highlighting
pygmentsUseClasses: true
frontmatter:
# publishDate is used to determine if a page is from the future.
# date is used for default sorting.
# https://stackoverflow.com/a/59760977/6927814
#
# As I have turned on buildFuture (see above), publishDate is not relevant.
date: ["created", "date", "published"]
lastmod: ["updated"]
expiryDate: ["expiryDate"]
taxonomies:
series: series
tag: tags
archive: archive
# * Languages
hasCJKLanguage: true
# This style fits better
services:
twitter:
disableInlineCSS: true
privacy:
twitter:
simple: true
security:
goTemplates:
# Allow Hugo template variables in JS template literals.
# The template is written by me.
allowActionJSTmpl: true
# * Local Variables
# Local Variables:
# eval: (outline-minor-mode)
# outline-regexp: "# [*\f]+"
# End: