-
Notifications
You must be signed in to change notification settings - Fork 341
/
mkdocs.yml
97 lines (92 loc) · 2.33 KB
/
mkdocs.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
site_name: devenv
site_description: "Fast, Declarative, Reproducible, and Composable Developer Environments using Nix"
site_url: "https://devenv.sh"
repo_name: "cachix/devenv"
repo_url: "https://github.com/cachix/devenv"
edit_uri: "edit/main/docs"
strict: true
validation:
omitted_files: warn
absolute_links: info # Or 'relative_to_docs' - new in MkDocs 1.6
unrecognized_links: warn
anchors: warn # New in MkDocs 1.6
extra_css:
- assets/top-level.css
theme:
name: material
logo: assets/logo.webp
favicon: assets/favicon.svg
icon:
repo: fontawesome/brands/github
custom_dir: docs/overrides
palette:
primary: white
accent: "#FBFBFB"
features:
- content.action.edit
- content.code.annotate
- content.code.copy
# Lazily process components on the page, like code blocks.
# Mounting all of code blocks on the reference doc page takes several
# seconds, even on a powerful machine.
- content.lazy
- content.tabs.link
- instant
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.path
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.share
- tabs
- toc.follow
# Exclude doc templates
exclude_docs: |
/individual-docs/**/*.md
plugins:
search: {}
markdownextradata: {}
include-markdown: {}
awesome-pages: {}
blog: {}
social:
cards_layout_options:
background_color: "#FBFBFB"
color: "#425C82"
rss:
use_git: false
match_path: blog/posts/.*
date_from_meta:
as_creation: date
as_update: date
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/cachix_org
- icon: fontawesome/brands/github
link: https://github.com/cachix/devenv
- icon: fontawesome/brands/discord
link: https://discord.gg/naMgvexb6q
markdown_extensions:
- tables
- admonition
- pymdownx.escapeall
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist
- pymdownx.tilde
- md_in_html
- attr_list