]> err.no Git - wiki.err.no/blob - config.toml
Fix link
[wiki.err.no] / config.toml
1 # The base URL of the site; the only required configuration variable.
2 base_url = "https://wiki.err.no"
3
4 # The site title and description; used in RSS by default.
5 title = "wiki.err.no"
6 description = ""
7
8 # The default language; used in RSS.
9 default_language = "en"
10
11 # The site theme to use.
12 theme = "hyde"
13
14 # When set to "true", all code blocks are highlighted.
15 highlight_code = false
16
17 # The theme to use for code highlighting.
18 # See below for list of allowed values.
19 highlight_theme = "base16-ocean-dark"
20
21 # When set to "true", an RSS feed is automatically generated.
22 generate_rss = false
23
24 # The number of articles to include in the RSS feed. All items are included if
25 # this limit is not set (the default).
26 # rss_limit = 20
27
28 # When set to "true", files in the `static` directory are hard-linked. Useful for large
29 # static files. Note that for this to work, both `static` and the
30 # output directory need to be on the same filesystem. Note that the theme's `static`
31 # files are always copied, regardles of this setting.
32 # hard_link_static = false
33
34 # The taxonomies to be rendered for the site and their configuration.
35 # Example:
36 #     taxonomies = [
37 #       {name = "tags", rss = true}, # each tag will have its own RSS feed
38 #       {name = "tags", lang = "fr"}, # you can have taxonomies with the same name in multiple languages
39 #       {name = "categories", paginate_by = 5},  # 5 items per page for a term
40 #       {name = "authors"}, # Basic definition: no RSS or pagination
41 #     ]
42 #
43 taxonomies = []
44
45 # The additional languages for the site.
46 # Example:
47 #     languages = [
48 #       {code = "fr", rss = true}, # there will be a RSS feed for French content
49 #       {code = "fr", search = true}, # there will be a Search Index for French content
50 #       {code = "it"}, # there won't be a RSS feed for Italian content
51 #     ]
52 #
53 languages = []
54
55 # When set to "true", the Sass files in the `sass` directory are compiled.
56 compile_sass = false
57
58 # When set to "true", a search index is built from the pages and section
59 # content for `default_language`.
60 build_search_index = false
61
62 # A list of glob patterns specifying asset files to ignore when the content
63 # directory is processed. Defaults to none, which means that all asset files are
64 # copied over to the `public` directory.
65 # Example:
66 #     ignored_content = ["*.{graphml,xlsx}", "temp.*"]
67 ignored_content = []
68
69 # A list of directories used to search for additional `.sublime-syntax` files.
70 extra_syntaxes = []
71
72 # Optional translation object. The key if present should be a language code.
73 # Example:
74 #     default_language = "fr"
75 #
76 #     [translations]
77 #     [translations.fr]
78 #     title = "Un titre"
79 #
80 #     [translations.en]
81 #     title = "A title"
82
83
84 # Configuration of the link checker.
85 [link_checker]
86 # Skip link checking for external URLs that start with these prefixes
87 skip_prefixes = [
88 #    "http://[2001:db8::]/",
89 ]
90
91 # Skip anchor checking for external URLs that start with these prefixes
92 skip_anchor_prefixes = [
93 #    "https://caniuse.com/",
94 ]
95
96 # Various slugification strategies, see below for details
97 # Defauls to everything being a slug
98 [slugify]
99 paths = "safe"
100 taxonomies = "safe"
101 anchors = "safe"
102
103 # Optional translation object. Keys should be language codes.
104 [translations]
105
106 # You can put any kind of data here. The data
107 # will be accessible in all templates.
108 [extra]