-
Notifications
You must be signed in to change notification settings - Fork 581
Expand file tree
/
Copy pathconfig.toml
More file actions
69 lines (51 loc) · 1.83 KB
/
config.toml
File metadata and controls
69 lines (51 loc) · 1.83 KB
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
baseURL = "https://letsencrypt.org/"
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = false
disableKinds = ["taxonomy", "term"]
enableRobotsTXT = true
# Note that this currently has no effect in Hugo.
timezone = "America/Los_Angeles"
assetDir = "src"
[params]
site_banner_enabled = false
github_username = "letsencrypt"
linkedin_url = "https://www.linkedin.com/company/lets-encrypt/"
crowdfunding_url = "https://www.generosity.com/community-fundraising/make-a-more-secure-web-with-let-s-encrypt"
# Date and time formatting, see https://gohugo.io/functions/format/
time_format_RFC3339 = "2006-01-02T15:04:05Z07:00"
time_format_RFC822 = "Mon, 02 Jan 2006 15:04:05 -0700"
time_format_default = ":date_medium"
# Useful when translating.
enableMissingTranslationPlaceholders = true
show_fundraiser = false
# Be explicit about the output formats. We only want an RSS feed for the home page.
[outputs]
home = [ "HTML", "RSS" ]
page = [ "HTML"]
section = [ "HTML"]
[outputFormats]
[outputFormats.RSS]
baseName = "feed"
# Hugo >= 0.33 is needed to get uglyURLs per section.
[uglyURLs]
post = true
[permalinks]
post = "/:year/:month/:day/:slug/"
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.goldmark.parser]
# To keep § ids identical after the migration from blackfriday to goldmark
autoHeadingIDType = "blackfriday"
# https://gohugo.io/getting-started/configuration-markup#highlight
# https://gohugo.io/content-management/syntax-highlighting/#list-of-chroma-highlighting-languages
# To update /src/css/_syntax-highlighting.scss:
# - https://gohugo.io/content-management/syntax-highlighting/#generate-syntax-highlighter-css
# - https://xyproto.github.io/splash/docs/all.html
# (with dark-mode in mind)
[markup.highlight]
# To avoid inline styles
noClasses = false
guessSyntax = false