-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathhugo.toml
More file actions
90 lines (75 loc) · 1.94 KB
/
hugo.toml
File metadata and controls
90 lines (75 loc) · 1.94 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
baseURL = 'https://opensource.posit.co'
languageCode = 'en-us'
title = 'Posit Open Source'
ignoreFiles = ['\.qmd$', '\.ipynb$', '\.Rmd$', '\.Rmarkdown$', 'CLAUDE\.md$', '_porting-notes\.md$', '_editing-ported-posts\.md$', '_link-checks\.md$', '_authoring-guide\.md$', '_external-sources', 'blog/.*/renv/', 'renv\.lock$', '\.Rprofile$', '_metadata\.yml$', '\.bib$', 'shinychat-tool-ui/feature/', '\.venv/', 'uv\.lock$', 'pyproject\.toml$', '\.quarto/', '_extensions/', '_quarto\.yml$', '_lychee/', '\.original$']
[permalinks.page]
blog = "/blog/:year-:month-:day{}_:slugorcontentbasename/"
[pagination]
pagerSize = 60
[params]
subtitle = ""
showReadingTime = false
[taxonomies]
tag = 'tags'
topic = 'topics'
person = 'people'
software = 'software'
languages = 'languages'
event = 'events'
resource = 'resources'
[outputFormats.ItemIndex]
mediaType = "application/json"
baseName = "item-index"
isPlainText = true
notAlternative = true
[outputs]
home = ['html']
section = ['html', 'ItemIndex']
taxonomy = ['html', 'ItemIndex']
term = ['html', 'ItemIndex']
page = ['html']
[services]
[services.rss]
limit = 20
[markup]
[markup.tableOfContents]
startLevel = 2
endLevel = 3
ordered = false
[markup.highlight]
lineNos = true
noClasses = false
[markup.goldmark.parser.attribute]
block = true
[markup.goldmark.renderer]
unsafe = true
[markup.goldmark.extensions.passthrough]
enable = true
[markup.goldmark.extensions.passthrough.delimiters]
block = [['$$', '$$']]
inline = [['$', '$']]
[menu]
[[menu.main]]
name = 'Software'
url = '/software/'
weight = 2
[[menu.main]]
name = 'People'
url = '/people/'
weight = 3
[[menu.main]]
name = 'Events'
url = '/events/'
weight = 4
[[menu.main]]
name = 'Resources'
url = '/resources/'
weight = 5
[[menu.main]]
name = 'Blog'
url = '/blog/'
weight = 6
[[menu.main]]
name = 'About'
url = '/about/'
weight = 7