zola/test_site/config.toml
David 23064f57c8
Support custom syntax highlighting themes (#1499)
Related to #419

Gruvbox tmTheme added to test_site, it is taken from
https://github.com/Colorsublime/Colorsublime-Themes (MIT licensed)
2021-09-13 21:08:48 +02:00

34 lines
636 B
TOML

title = "My site"
base_url = "https://replace-this-with-your-url.com"
compile_sass = true
generate_feed = true
theme = "sample"
taxonomies = [
{name = "categories", feed = true},
{name = "podcast_authors", feed = true},
]
ignored_content = ["*/ignored.md"]
[markdown]
highlight_code = true
highlight_theme = "custom_gruvbox"
extra_syntaxes_and_themes = ["syntaxes", "highlight_themes"]
[slugify]
paths = "on"
taxonomies = "on"
anchors = "on"
[link_checker]
skip_prefixes = [
"http://[2001:db8::]/",
]
skip_anchor_prefixes = [
"https://github.com/rust-lang/rust/blob/",
]
[extra.author]
name = "Vincent Prouillet"