-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
84 lines (81 loc) · 1.86 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
site_name: Dymmond Blog
site_description: The official Dymmond's blog.
site_url: https://blog.dymmond.com
theme:
name: "material"
custom_dir: docs/overrides
language: en
palette:
- scheme: "default"
primary: "purple"
accent: "amber"
media: "(prefers-color-scheme: light)"
toggle:
icon: "material/lightbulb"
name: "Switch to dark mode"
- scheme: "slate"
media: "(prefers-color-scheme: dark)"
accent: "amber"
primary: "light blue"
toggle:
icon: "material/lightbulb-outline"
name: "Switch to light mode"
favicon: statics/images/favicon.ico
logo: statics/images/white.png
features:
- search.suggest
- search.highlight
- content.tabs.link
- content.code.copy
- content.code.annotate
- content.tooltips
- content.code.select
- navigation.path
- navigation.tabs
- navigation.indexes
- navigation.top
- navigation.tracking
plugins:
- search
- blog:
blog_dir: .
post_date_format: full
post_excerpt: required
- meta-descriptions:
export_csv: false
quiet: false
enable_checks: false
min_length: 50
max_length: 160
trim: false
- markdownextradata:
data: data
- rss:
match_path: blog/posts/.*
date_from_meta:
as_creation: date
categories:
- categories
- tags
nav:
- Home: "index.md"
- Website: "https://dymmond.com"
markdown_extensions:
- toc:
permalink: true
- mdx_include:
base_path: docs
- admonition
- extra
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ""
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
extra_css:
- statics/css/extra.css
- statics/css/custom.css