-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
88 lines (88 loc) · 2.34 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
site_name: django-fragments Docs
site_description: Custom template tags for common html idioms in Django.
site_url: https://justmars.github.io
site_author: Marcelino Veloso III
repo_url: https://github.com/justmars/django-fragments
dev_addr: '127.0.0.1:8001'
theme:
name: "material"
features:
- content.tabs.link
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: pink
toggle:
icon: material/brightness-4
name: Switch to light mode
nav:
- Overview: index.md
- Install: install.md
- Fragments:
- icon: fragments/icon.md
- themer: fragments/themer.md
- hput: fragments/hput.md
- nava: fragments/nava.md
- og: fragments/og.md
- Architectures:
- Rationale: architectures/rationale.md
- Menubar: architectures/menubar.md
- Listbox: architectures/listbox.md
- Alert: architectures/alert.md
- utils: utils.md
extra:
homepage: https://mv3.dev
social:
- icon: fontawesome/brands/github
link: https://github.com/justmars
name: justmars on Github
- icon: fontawesome/brands/mastodon
link: https://esq.social/@mv
name: mv on Mastodon
copyright: Copyright © Marcelino Veloso III
plugins:
- mkdocstrings:
handlers:
python:
options:
show_root_toc_entry: false
show_category_heading: true
show_source: true
heading_level: 3
- search:
lang: en
markdown_extensions:
- footnotes
- attr_list
- md_in_html
- admonition
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
auto_title: 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.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true