-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
63 lines (56 loc) · 1.53 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
site_name: FastAPI, asyncio with Postgresql
site_url: https://vincedgy.github.io/fastapi-async-with-postgresql/
site_author: vincedgy
repo_url: https://github.com/vincedgy/fastapi-async-with-postgresql
edit_uri: tree/main/docs
repo_name: GitHub
nav:
- Home: index.md
- About: about.md
theme:
name: material
features:
#- header.autohide
- search.suggest
- navigation.instant
- navigation.sections
palette:
scheme: preference
accent: orange
highlightjs: true
hljs_languages:
- python
- shell
extra_css:
- css/extra.css
markdown_extensions:
- toc:
permalink: true
slugify: !!python/name:pymdownx.slugs.uslugify
- admonition
- pymdownx.details
- pymdownx.tasklist
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.superfences
- pymdownx.highlight:
linenums: true
- def_list
- attr_list
- mdx_gh_links:
user: mkdocs
repo: mkdocs
copyright: Copyright © 2020 <a href="https://twitter.com/vincedgy">Vincent DAGOURY</a>, Maintained by vincedgy
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/vincedgy
- icon: fontawesome/brands/github
link: https://github.com/vincedgy
- icon: fontawesome/brands/linkedin
link: https://fr.linkedin.com/in/vincentdagoury
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/c/VinceDgy
plugins:
- search