etch/exampleSite/config.toml

39 lines
692 B
TOML
Raw Permalink Normal View History

2020-05-15 16:42:45 -04:00
baseURL = "https://example.com"
title = "Website Name"
theme = "etch"
languageCode = "en-US"
enableInlineShortcodes = true
pygmentsCodeFences = true
pygmentsUseClasses = true
[params]
description = "Your site description"
2021-01-30 01:14:29 -05:00
copyright = "Copyright © 2021 Your Name"
2020-05-30 21:46:06 -04:00
dark = "auto"
2020-05-15 16:42:45 -04:00
highlight = true
[menu]
[[menu.main]]
identifier = "posts"
name = "posts"
title = "posts"
url = "/"
weight = 10
[[menu.main]]
identifier = "about"
name = "about"
title = "about"
url = "/about/"
weight = 20
2020-05-15 16:42:45 -04:00
[permalinks]
posts = "/:title/"
[markup.goldmark.renderer]
# Allow HTML in Markdown
unsafe = true
2020-06-07 23:40:45 -04:00
[markup.tableOfContents]
ordered = true