-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
51 lines (39 loc) · 1 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
title = "Benevides' Blog"
baseURL = "https://mtrsk.github.io"
languageCode = "en-us"
pygmentsUseClasses = true
assetDir = "static"
[params]
subtitle = "\"Writing is nothing more than a guided dream.\""
libs = true
[params.author]
name = "Marcos Benevides"
[outputs]
section = ["HTML", "ATOM"]
[permalinks]
blog = "/blog/:year/:slug/"
notes = "/notes/:year/:slug/"
[taxonomies]
category = 'categories'
tag = 'tags'
[mediaTypes."application/atom+xml"]
suffixes = ["xml"]
[outputFormats.Atom]
name = "Atom"
mediaType = "application/atom+xml"
baseName = "atom"
[outputFormats.RSS]
mediaType = "application/rss+xml"
baseName = "rss"
[markup.goldmark.renderer]
unsafe = true
[markup.tableOfContents]
ordered = true
[markup]
[markup.goldmark]
[markup.goldmark.extensions]
[markup.goldmark.extensions.passthrough]
enable = true
[markup.goldmark.extensions.passthrough.delimiters]
block = [['\[', '\]'], ['$$', '$$']]
inline = [['\(', '\)']]