aboutsummaryrefslogtreecommitdiff
path: root/config.toml
blob: 02779c8c1f1dc0f1432c1ca3e0aa62b979957f87 (plain)
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
baseURL = 'https://mitjafelicijan.com/'
languageCode = 'en-us'
title = 'Mitja Felicijan'

# Theme selction.
theme = 'simple'

# Makes url's have '.html' at the end.
uglyurls = true

# Length of summary.
summaryLength = 5

# Enabling robots.txt.
enableRobotsTXT = true

# Custom params.
[params]
  description = 'You do not learn by relaxing. You learn by violently assaulting your problem until it surrenders its mysteries to you.'

# URL if not specified in a post or a page.
[permalinks]
  posts = ':title'
  pages = ':title'

# Author information.
[author]
  name = 'Mitja Felicijan'

# Additional markup settings.
[markup]
  [markup.tableOfContents]
    endLevel = 5
    ordered = false
    startLevel = 2

  [markup.goldmark.renderer]
    unsafe = true

  [markup.highlight]
    style = 'github'

# Taxonomies.
[outputs]
  index = ["HTML", "atom"]
  section = ["HTML", "notes"]

# Output formats.
[outputFormats]
  [outputFormats.atom]
    mediatype = "application/rss"
    rel = "atom"
    baseName = "atom"
  [outputFormats.notes]
    mediatype = "application/rss"
    rel = "notes"
    baseName = "notes"