-
Notifications
You must be signed in to change notification settings - Fork 13
/
_config.yml
117 lines (91 loc) · 2.47 KB
/
_config.yml
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
116
117
# ====================
# Global configuration
# ====================
#
# See https://jekyllrb.com/docs/configuration/options/#global-configuration
source: "src"
destination: "_site"
# =====================
# Build command options
# =====================
#
# See https://jekyllrb.com/docs/configuration/options/#build-command-options
# This enables strict parsing of the YAML front matter.
strict_front_matter: true
# =====================
# Serve command options
# =====================
#
# See https://jekyllrb.com/docs/configuration/options/#serve-command-options
port: 5757
livereload: true
# ==============
# Liquid options
# ==============
#
# See https://jekyllrb.com/docs/configuration/liquid/
liquid:
error_mode: strict
strict_filters: true
# Note: I deliberately omit `strict_variables: true` here, because
# sometimes I want to be able to skip variables in the front matter
# (e.g. I don't want to set an empty `nav_section: ""` for every page
# which doesn't belong to a section).
# =============================
# jekyll-sass-converter options
# =============================
#
# See https://github.com/jekyll/jekyll-sass-converter
sass:
sass_dir: "_scss"
style: "compressed"
# ==================
# Collections config
# ==================
#
# See https://jekyllrb.com/docs/collections/ for more info.
collections:
til:
output: true
permalink: "/til/:year/:title/"
# ================
# Permalink config
# ================
#
# Set the URL structure for permalinks on my posts.
# See https://jekyllrb.com/docs/permalinks/#global
permalink: "/:year/:title/"
# ==================
# Template variables
# ==================
#
# These variables aren't part of any third-party Jekyll plugin; they're
# placeholders used in my templates.
title: "alexwlchan"
author: "Alex Chan"
email: "[email protected]"
url: "https://alexwlchan.net"
description: "Alex Chan's personal website"
# ===============
# Kramdown config
# ===============
#
# See https://jekyllrb.com/docs/configuration/markdown/
# See https://kramdown.gettalong.org/options.html
kramdown:
# Disabled so it doesn't interfere with MathJax
# TODO: Do I still need this?
math_engine: null
# ================
# Remaining config
keep_files: [
# Managed by rsync outside the main Jekyll process
"files", "images",
# Managed by the article cards plugin
"c",
# Managed by the theming plugin
"favicons", "favicon.png", "favicon.ico", "headers",
]
highlighter: "rouge"
plugins:
- "jekyll-include-cache"