mirror of
https://github.com/getzola/zola
synced 2024-11-10 14:24:27 +00:00
92e80b5451
* apply skip_prefixes before parsing external link domain * log number of links skipped by skip_prefixes
35 lines
684 B
TOML
35 lines
684 B
TOML
title = "My Integration Testing 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::]/",
|
|
"http://invaliddomain",
|
|
]
|
|
|
|
skip_anchor_prefixes = [
|
|
"https://github.com/rust-lang/rust/blob/",
|
|
]
|
|
|
|
[extra.author]
|
|
name = "Vincent Prouillet"
|