aboutsummaryrefslogtreecommitdiff
path: root/config.toml
diff options
context:
space:
mode:
authorMitja Felicijan <m@mitjafelicijan.com>2023-07-08 23:25:41 +0200
committerMitja Felicijan <m@mitjafelicijan.com>2023-07-08 23:25:41 +0200
commitcd6644ea4ddc78597934ab0ef5ba50e3c3daa927 (patch)
tree03de331a8db6386dfd6fa75155bfbcea6b4feaf3 /config.toml
parent84ed124529ffeee1590295b8de3a8faf51848680 (diff)
downloadmitjafelicijan.com-cd6644ea4ddc78597934ab0ef5ba50e3c3daa927.tar.gz
Moved to a simpler SSG
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml46
1 files changed, 0 insertions, 46 deletions
diff --git a/config.toml b/config.toml
deleted file mode 100644
index 160f755..0000000
--- a/config.toml
+++ /dev/null
@@ -1,46 +0,0 @@
1baseURL = 'https://mitjafelicijan.com/'
2languageCode = 'en-us'
3title = 'Mitja Felicijan'
4
5# Theme selction.
6theme = 'simple'
7
8# Makes url's have '.html' at the end.
9uglyurls = true
10
11# Length of summary.
12summaryLength = 5
13
14# Enabling robots.txt.
15enableRobotsTXT = true
16
17# Custom params.
18[params]
19 description = 'You do not learn by relaxing. You learn by violently assaulting your problem until it surrenders its mysteries to you.'
20
21# URL if not specified in a post or a page.
22[permalinks]
23 posts = ':title'
24 pages = ':title'
25
26# Author information.
27[author]
28 name = 'Mitja Felicijan'
29
30# Additional markup settings.
31[markup]
32 [markup.tableOfContents]
33 endLevel = 5
34 ordered = false
35 startLevel = 2
36
37 [markup.goldmark.renderer]
38 unsafe = true
39
40 [markup.highlight]
41 style = 'github'
42
43# Output formats.
44[outputs]
45 home = ["HTML", "RSS", "JSON"]
46 section = ["HTML", "RSS", "JSON"]