-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathhugo.toml
More file actions
90 lines (71 loc) · 1.64 KB
/
hugo.toml
File metadata and controls
90 lines (71 loc) · 1.64 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://neovim.io/'
languageCode = 'en-US'
title = 'Neovim'
# needed for og:description to be the website description (below in [params])
summaryLength = 0
[frontmatter]
date = [":filename", ":default"]
[permalinks]
news = "/:section/:year/:month/"
[outputs]
section = ["html", "rss"]
[outputFormats.RSS]
baseName = "news"
path = "/"
[params]
description = "hyperextensible Vim-based text editor"
# Used for social previews
images = ['/logos/neovim-logo-social-preview.png']
[params.news]
name = "Neovim Newsletter"
authors = "Neovim Community"
url = "/news"
feed = "/news.xml"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
# XXX: somehow this accidentally enables use of the Neovim palette (css/neovim-hi.css),
# presumably those css classes match whatever Hugo is using to provide syntax highlighting.
[markup.highlight]
noClasses = false
[[menus.main]]
name = "About"
url = "/about/"
weight = 10
identifier = "about"
[[menus.main]]
name = "Vision"
url = "/charter/"
parent = "about"
weight = 1
[[menus.main]]
name = "Roadmap"
url = "/roadmap/"
parent = "about"
weight = 2
[[menus.main]]
name = "Screenshots"
url = "/screenshots/"
parent = "about"
weight = 3
[[menus.main]]
name = "News"
url = "/news/"
weight = 20
[[menus.main]]
name = "Development"
url = "https://github.com/neovim/neovim"
weight = 30
[[menus.main]]
name = "Documentation"
url = "/doc/"
weight = 40
[[menus.main]]
name = "Sponsors"
url = "/sponsors/"
weight = 50
[[menus.main]]
name = "Store"
url = "https://store.neovim.io/"
weight = 60