docspell/website/site/config.toml

40 lines
1.0 KiB
TOML
Raw Normal View History

2020-07-27 20:13:22 +00:00
# The URL the site will be built for
base_url = "https://docspell.org"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
default_language = "en"
[markdown]
highlight_code = true
2022-01-27 19:23:15 +00:00
#light: ayu-light, OneHalfLight, base16-ocean-light
highlight_theme = "css"
highlight_themes_css = [
{ theme = "gruvbox-dark", filename = "syntax-dark.css" },
{ theme = "base16-ocean-light", filename = "syntax-light.css" }
]
2020-07-27 20:13:22 +00:00
[link_checker]
external_level = "warn"
2020-07-27 20:13:22 +00:00
skip_prefixes = [
"http://localhost",
2022-04-12 20:34:05 +00:00
"https://docs.github.com", # doesn't allow checking anymore
2020-07-27 20:13:22 +00:00
"/openapi",
2024-02-26 16:32:32 +00:00
"https://www.abisource.com", # has bad ssl config
2024-03-08 20:24:40 +00:00
"https://chromewebstore.google.com", # too many redirects reported
"https://stackoverflow.com/" # forbidden
2020-07-27 20:13:22 +00:00
]
skip_anchor_prefixes = [
"https://github.com",
"https://package.elm-lang.org"
]
[extra]
# Put all your custom variables here
2024-01-29 21:14:54 +00:00
version = "0.42.0-SNAPSHOT"