-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
63 lines (62 loc) · 1.57 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: PyI18n
repo_url: https://github.com/sectasy0/pyi18n
repo_name: sectasy0/pyi18n
copyright: Copyright © 2024 sectasy0
markdown_extensions:
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.smartsymbols
- pymdownx.betterem
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.tasklist
- pymdownx.details
- admonition
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/python
link: https://pypi.org/project/pyi18n-v2
- icon: fontawesome/brands/github
link: https://github.com/sectasy0/
plugins:
- include-markdown
- snippet
- search
- mkdocstrings
theme:
name: material
features:
- navigation.tabs
- navigation.indexes
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
nav:
- Home:
- Release History: 'home/release-history.md'
- License: 'home/license.md'
- Getting started:
- Basic usage: 'started/basic-usage.md'
- Custom loader: 'started/custom-loader.md'
- Namespaces: 'started/namespaces.md'
- Integrate pyi18n with Django project: 'started/use-in-django.md'
- Normalize your locales: 'started/normalization.md'
- Code Reference:
- PyI18n class: 'code/pyi18n.md'
- Loaders: 'code/loaders.md'
- Tasks: 'code/tasks.md'
- Support: 'support.md'