-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathconfig.toml
68 lines (60 loc) · 1.6 KB
/
config.toml
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
baseURL = "https://snack.planetarium.dev/"
theme = "hugo-planetarium"
copyright = '''
© 2019–2023
<a href="https://planetariumlabs.com/"
style="color: inherit; text-decoration: inherit;">Planetarium</a>.
'''
disableKinds = ["RSS"] # We use Atom instead. See the below.
# We use ISO 639-3 (so-called "three-letter code") instead of
# ISO 639-1 (so-called "two-letter code") here.
# Instead, we have a custom attribute named "ianaSubtag" which is used for
# HTML lang attribute, etc.
defaultContentLanguage = "mis"
disableLanguages = []
[languages.mis.params]
title = "Planetarium Engineering Snack"
weight = 999
[languages.eng.params]
weight = 1
title = "Planetarium Engineering Snack"
languageName = "English"
ianaSubtag = "en"
dateFormat = "January 2, 2006"
[languages.kor.params]
weight = 2
title = "플라네타리움 엔지니어링 스낵"
languageName = "한국어"
ianaSubtag = "ko"
dateFormat = "2006년 1월 2일"
#[languages.jpn]
#weight = 2
#title = "プラネタリウム エンジニアリング スナック"
#languageName = "日本語"
#ianaSubtag = "ja"
#dateFormat = "2006年1月2日"
[outputs]
home = ["HTML", "Atom"]
[mediaTypes."application/atom"]
suffixes = ["xml"]
[outputFormats.Atom]
mediaType = "application/atom"
isPlainText = false
isHTML = false
[permalinks]
posts = "/:year/:month/:filename/"
[markup.goldmark.extensions]
definitionList = true
footnote = true
strikethrough = false
table = true
taskList = false
typographer = true
[markup.goldmark.renderer]
hardWraps = false
unsafe = true
xhtml = false
[markup.highlight]
guessSyntax = false
style = "pastie"
tabWidth = 8