-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
61 lines (56 loc) · 1.11 KB
/
mkdocs.yml
File metadata and controls
61 lines (56 loc) · 1.11 KB
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
site_name: Graphemy
repo_url: https://github.com/MDoreto/graphemy
repo_name: MDoreto/graphemy
edit_uri: tree/master/docs
theme:
name: material
palette:
- scheme: default
primary: dark blue
accent: amber
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
primary: blue
accent: amber
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
language: en
logo: assets/logo.png
favicon: assets/logo.png
features:
- search.suggest
- search.highlight
- content.code.copy
markdown_extensions:
- attr_list
- mdx_include
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ''
- pymdownx.blocks.admonition:
types:
- note
- info
- tip
- warning
- danger
- pymdownx.tabbed:
alternate_style: true
extra_css:
- stylesheets/extra.css
plugins:
- macros
- search
- mkdocstrings:
handlers:
python:
paths: [graphemy]
extra:
commands:
run: poetry run graphemy
dev_addr: 127.0.0.1:8001