summaryrefslogtreecommitdiff
path: root/hugo.toml
blob: b1e705e99a2f861574cef025e57731cb78564506 (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
baseURL = "http://localhost:1314/"
title = "RICHARD QIN'S HOME PAGE"
languageCode = "en"
defaultContentLanguage = "en"
timeZone = "Asia/Shanghai"
uglyURLs = true
disableHugoGeneratorInject = true
disableKinds = ["taxonomy", "term", "sitemap"]
enableRobotsTXT = false

[params]
  owner = "Richard Qin"
  identity = "richard@web:~/"
  description = "Richard Qin's journal, technical notes, projects, and links."
  email = "richard.qin.001@gmail.com"
  sourceURL = "https://codeberg.org/Richard-Qin/rhomepage"
  gitBase = "https://codeberg.org/Richard-Qin/rhomepage/src/branch/main"
  contentLicense = "CC BY-SA 4.0"

[permalinks]
  journal = "/:year/:month/:slug"
  notes = "/:sections/:slug"

[outputs]
  home = ["HTML", "RSS"]
  section = ["HTML"]
  page = ["HTML"]

[outputFormats.RSS]
  mediaType = "application/rss+xml"
  baseName = "rss"

[markup]
  [markup.goldmark]
    [markup.goldmark.renderer]
      unsafe = true
  [markup.highlight]
    codeFences = false
    guessSyntax = false
  [markup.tableOfContents]
    startLevel = 2
    endLevel = 3
    ordered = false