47 lines
886 B
TOML
47 lines
886 B
TOML
baseURL = "https://til.dcpri.me/"
|
|
languageCode = "en-us"
|
|
title = "Today I learned"
|
|
theme = "etch"
|
|
enableInlineShortcodes = true
|
|
pygmentsCodeFences = true
|
|
pygmentsUseClasses = true
|
|
enableRobotsTXT = true
|
|
|
|
|
|
[params]
|
|
description = "today I learned posts"
|
|
copyright = "Copyright © 2021-2022 Darshil Chanpura"
|
|
dark = "auto"
|
|
highlight = true
|
|
mainSections = ["posts"]
|
|
|
|
[params.plausible]
|
|
enabled = true
|
|
domain = "til.dcpri.me"
|
|
src = "https://t.dcpri.me/js/plausible.js"
|
|
|
|
[menu]
|
|
[[menu.main]]
|
|
identifier = "posts"
|
|
name = "Posts"
|
|
title = "Posts"
|
|
url = "/"
|
|
weight = 10
|
|
|
|
[[menu.main]]
|
|
identifier = "about"
|
|
name = "About"
|
|
title = "About"
|
|
url = "/about/"
|
|
weight = 20
|
|
|
|
[permalinks]
|
|
posts = "/posts/:title/"
|
|
|
|
[markup.goldmark.renderer]
|
|
# Allow HTML in Markdown
|
|
# unsafe = true
|
|
|
|
[markup.tableOfContents]
|
|
ordered = true
|