-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
44 lines (36 loc) · 821 Bytes
/
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
baseURL = '/'
languageCode = 'en-us'
title = 'Hugo - Blog'
defaultContentLanguage = "en"
enableRobotsTXT = true
paginate = 10
[params]
author = "Hugo"
description = "Hi! im Hugo and this is my blog"
[permalinks]
posts = "/:filename/"
[markup.goldmark.renderer]
unsafe= true
[outputs]
home = [ "HTML", "JSON", "RSS", "Algolia"]
[languages]
[languages.en]
contentDir = 'content/en'
languageName = 'en'
weight = 1
[languages.es]
contentDir = 'content/es'
languageName = 'es'
weight = 2
[markup]
[markup.highlight]
style = 'onedark'
guessSyntax = true
[outputFormats.Algolia]
baseName = "algolia"
isPlainText = true
mediaType = "application/json"
notAlternative = true
[params.algolia]
vars = ["title", "summary", "date", "publishdate", "permalink"]
params = ["tags"]