-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.toml
44 lines (32 loc) · 1.18 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# The URL the site will be built for
# local testing, full path `file:///path/to/repos/site/public/`
base_url = "https://veloren.net"
# Site title and description
title = "Veloren"
description = "An open-world, open-source voxel RPG"
# RSS feed
generate_feed = true
# We will provide our own template at templates/rss.xml derived from
# https://github.com/getzola/zola/blob/master/components/templates/src/builtins/rss.xml
feed_filename = "rss.xml"
feed_limit = 50
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Default language used in RSS and i18n
default_language = "en"
taxonomies = [
{ name = "tags" }
]
# Configuration of the Markdown rendering
[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Gutenberg
highlight_code = true
# Whether to set rel="nofollow" for all external links
external_links_no_follow = true
# Whether to set rel="noreferrer" for all external links
external_links_no_referrer = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
[extra]
# Put all your custom variables here