2019-11-27 15:56:05 +00:00
|
|
|
# The URL the site will be built for
|
2020-03-13 03:54:08 +00:00
|
|
|
base_url = "/"
|
2019-11-27 15:56:05 +00:00
|
|
|
|
2020-02-24 09:01:04 +00:00
|
|
|
title = "Rust Search Extension - The ultimate search extension for Rust"
|
2019-11-27 15:56:05 +00:00
|
|
|
|
|
|
|
# Whether to automatically compile all Sass files in the sass directory
|
|
|
|
compile_sass = true
|
|
|
|
|
2021-05-12 16:16:03 +00:00
|
|
|
# Whether to build a search index to be used later on by a JavaScript library
|
|
|
|
build_search_index = false
|
|
|
|
theme = "juice"
|
|
|
|
|
|
|
|
# Configuration of the Markdown rendering
|
|
|
|
[markdown]
|
2019-11-27 15:56:05 +00:00
|
|
|
# Whether to do syntax highlighting
|
|
|
|
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
|
|
|
|
highlight_code = true
|
|
|
|
highlight_theme = "inspired-github"
|
|
|
|
|
|
|
|
[extra]
|
|
|
|
# Put all your custom variables here
|
2020-07-25 15:43:08 +00:00
|
|
|
juice_logo_name = "Rust Search Extension"
|
|
|
|
juice_logo_path = "logo.png"
|
|
|
|
juice_extra_menu = [
|
2024-09-01 03:42:52 +00:00
|
|
|
{ title = "Query.rs", link = "https://query.rs" },
|
|
|
|
{ title = "Github", link = "https://github.com/huhu/rust-search-extension" },
|
2023-04-09 15:37:20 +00:00
|
|
|
]
|
2024-09-01 03:42:52 +00:00
|
|
|
juice_exclude_menu = ["Update", "Privacy"]
|
2021-03-03 02:50:21 +00:00
|
|
|
repository_url = "https://github.com/huhu/rust-search-extension"
|
2020-10-11 15:04:22 +00:00
|
|
|
meta_title = "Rust Search Extension: The ultimate search extension for Rust"
|
2024-09-01 03:42:52 +00:00
|
|
|
meta_description = "Search docs, crates, builtin attributes, official books, and error codes, etc in your address bar instantly."
|