summaryrefslogtreecommitdiffstats
path: root/config.toml
blob: 97a42c2facd35d4d1badc14efc7dd7e6a26134e3 (plain) (blame)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
baseURL = "https://yulqen.org"
title = "Yulqen"
theme = "problematic"
languageCode = "en-gb"
enableInlineShortcodes = true
pygmentsCodeFences = true
pygmentsUseClasses = true
pagination.pagerSize = 10

[params]
  description = "An intentionally quiet and unassuming (and empty) blog"
  copyright = "Copyright © 2024 Yulqen"
  dark = "off"
  highlight = true
  custom_css = ["css/style.css"]
  mainSections = ['blog', 'about', 'stream', 'reading']

[menu]
  [[menu.main]]
    identifier = "techjournal"
    name = "Techjournal"
    title = "techjournal"
    url = "/techjournal/"
    weight = 10
    post = '| '

  [[menu.main]]
    identifier = "blog"
    name = "Blog"
    title = "blog"
    url = "/blog/"
    weight = 10
    post = '| '

  [[menu.main]]
    identifier = "art"
    name = "Art"
    title = "art"
    url = "/art/"
    weight = 10
    post = '| '

  [[menu.main]]
    identifier = "stream"
    name = "Stream"
    title = "Stream"
    url = "/stream/"
    weight = 20
    post = '| '

  [[menu.main]]
    identifier = "about"
    name = "About"
    title = "about"
    url = "/about/"
    weight = 20
    post = '| '
  
  [[menu.main]]
    identifier = "now"
    name = "Now"
    title = "now"
    url = "/now/"
    weight = 20
    post = '| '

  [[menu.main]]
    identifier = "categories"
    name = "Categories"
    title = "Categories"
    url = "/categories/"
    weight = 20
    post = '| '

  [[menu.main]]
    identifier = "poems"
    name = "Poems"
    title = "Poems"
    url = "/writing/poems/"
    weight = 20
    post = '| '

  [[menu.main]]
    identifier = "reading"
    name = "Reading"
    title = "Reading"
    url = "/reading/"
    weight = 20
    post = '| '

  [[menu.main]]
    identifier = "tags"
    name = "Tags"
    title = "Tags"
    url = "/tags/"
    weight = 20


[permalinks]
  posts = "/:title/"

[markup.goldmark.renderer]
  # Allow HTML in Markdown
  unsafe = true

  [markup.tableOfContents]
    ordered = true
    startLevel = 2
    endLevel = 4