mirror of
https://github.com/getzola/zola
synced 2024-11-10 06:14:19 +00:00
c054ed1b10
* Added support for multiple feeds * Implemented backwards-compatibility for feed config * Added a test for feed config backwards-compat, fixed bugs - Fixed language config merge bug found by a test - Adjusted two existing tests to fully check stuff related to multiple feeds - Added a new test for backwards-compatibility of the changes - Fixed bugs found by the newly added test * Renamed MightBeSingle to SingleOrVec * Made the multiple feeds config changes "loudly" backwards-incompatible * added #[serde(deny_unknown_fields)] to front-matter, fixed problems this found in tests
37 lines
732 B
TOML
37 lines
732 B
TOML
title = "My Integration Testing site"
|
|
base_url = "https://replace-this-with-your-url.com"
|
|
compile_sass = true
|
|
generate_feeds = true
|
|
theme = "sample"
|
|
|
|
taxonomies = [
|
|
{name = "categories", feed = true},
|
|
{name = "podcast_authors", feed = true},
|
|
]
|
|
|
|
ignored_content = ["*/ignored.md"]
|
|
|
|
author = "config@example.com (Config Author)"
|
|
|
|
[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"
|