-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
49 lines (44 loc) · 1.38 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
site_name: SteamTrader-Wrapper
site_description: Неофициальная Python библиотека для работы с API сервиса Steam-Trader
site_url: https://lemon4ksan.github.io/steam-trader/
theme:
name: 'material'
palette:
- scheme: 'default'
media: '(prefers-color-scheme: light)'
toggle:
icon: 'material/lightbulb'
name: "Switch to dark mode"
- scheme: 'slate'
media: '(prefers-color-scheme: dark)'
primary: 'blue'
toggle:
icon: 'material/lightbulb-outline'
name: 'Switch to light mode'
repo_name: SteamTrader-Wrapper
repo_url: https://github.com/Lemon4ksan/SteamTrader-Wrapper
edit_uri: ""
nav:
- Введение: 'index.md'
- Начало работы: 'quickstart.md'
- Асинхронный клиент: 'async.md'
- Расширенный функционал: 'ext_guide.md'
- Справочник по API:
- Основной клиент: 'client.md'
- Датаклассы: 'dataclasses.md'
- Ext клиент: 'ext.md'
- Исключения: 'exceptions.md'
- Web API: 'web.md'
plugins:
- mkdocstrings:
handlers:
python:
options:
show_source: false
show_symbol_type_heading: true
docstring_style: google
- search
markdown_extensions:
- admonition
- codehilite:
css_class: highlight