-
Notifications
You must be signed in to change notification settings - Fork 72
/
mkdocs.yml
115 lines (107 loc) · 2.75 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
site_name: FastAPI do Zero
site_url: https://fastapidozero.dunossauro.com
docs_dir: aulas
repo_url: https://github.com/dunossauro/fastapi-do-zero
repo_name: dunossauro/fastapi-do-zero
edit_uri: tree/main/aulas
theme:
name: material
custom_dir: overrides
logo: assets/logo.svg
favicon: assets/logo.svg
language: pt
features:
- content.code.annotate
- content.code.copy
- content.tabs.link
- search.suggest
- search.highlight
- search.share
palette:
- scheme: slate
primary: deep purple
toggle:
icon: material/weather-sunny
name: Modo claro
- scheme: default
primary: deep purple
toggle:
icon: material/weather-night
name: Modo noturno
markdown_extensions:
- pymdownx.critic
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.details
- pymdownx.keys
- footnotes
- admonition
- markdown.extensions.attr_list
- pymdownx.tabbed:
alternate_style: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- md_in_html
plugins:
- macros
- glightbox
- mkdocs-video
- search:
lang: pt
- git-authors:
show_email_address: false
show_line_count: true
- git-revision-date-localized
- social
- with-pdf:
author: Eduardo Mendes (@dunossauro)
cover_title: FastAPI do zero
cover_subtitle: Uma introdução prática!
copyright: CC BY-NC-SA
toc_level: 6
enabled_if_env: ENABLE_PDF_EXPORT
toc_title: Índice
- exclude:
glob:
- "wip.md"
- exclude-unused-files
- mkdocs_quiz
fonts:
icon: material/format-font
preferences:
- text: Default
- text: Roboto
code: Roboto Mono
- text: OpenDyslexic
code: OpenDyslexicMono
src: https://fonts.cdnfonts.com/css/opendyslexic
extra_javascript:
- assets/javascripts/extra.js
- https://unpkg.com/[email protected]/dist/mermaid.min.js
extra_css:
- stylesheets/extra.css
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/dunossauro
- icon: fontawesome/brands/twitter
link: https://twitter.com/dunossauro
- icon: fontawesome/brands/youtube
link: https://youtube.com/dunossauro
- icon: fontawesome/brands/instagram
link: https://instagram.com/dunossauro
- icon: fontawesome/brands/tiktok
link: https://www.tiktok.com/@dunossauro
hooks:
- hooks/quiz_hook.py