-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
138 lines (138 loc) · 4.15 KB
/
mkdocs.yml
File metadata and controls
138 lines (138 loc) · 4.15 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
copyright: <a href="https://github.com/DedInc/opentele2/" target="_blank" rel="noopener">DedInc.opentele2</a>
docs_dir: docs
edit_uri: https://github.com/DedInc/opentele2/tree/main/docs/
extra_css:
- assets/pymdownx-extras/extra-c12baed3e0.css
extra_javascript:
- https://unpkg.com/mermaid@11.12.2/dist/mermaid.min.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- assets/pymdownx-extras/extra-loader-9e2c67b9.js
markdown_extensions:
- toc:
permalink: true
- admonition: null
- smarty:
smart_quotes: false
- pymdownx.betterem: null
- attr_list: null
- def_list: null
- tables: null
- abbr: null
- footnotes: null
- md_in_html: null
- pymdownx.superfences:
preserve_tabs: true
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.snippets: null
- pymdownx.highlight:
extend_pygments_lang:
- lang: python
name: python
options:
python3: true
- lang: python
name: pyinline
options:
python3: true
startinline: true
linenums_style: pymdownx-inline
pygments_style: material
use_pygments: true
- pymdownx.inlinehilite: null
- pymdownx.magiclink:
normalize_issue_symbols: true
repo: opentele2
repo_url_shortener: true
repo_url_shorthand: true
social_url_shortener: true
social_url_shorthand: true
user: DedInc
- pymdownx.tilde: null
- pymdownx.caret: null
- pymdownx.smartsymbols: null
- pymdownx.emoji: null
- pymdownx.escapeall:
hardbreak: true
nbsp: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.progressbar: null
- pymdownx.arithmatex:
block_tag: pre
generic: true
- pymdownx.mark: null
- pymdownx.striphtml: null
- pymdownx.details: null
- pymdownx.tabbed:
alternate_style: true
- pymdownx.saneheaders: null
nav:
- Home: README.md
- Examples:
- Home: examples/README.md
- Convert tdata to Telethon: examples/convert-tdata-to-telethon.md
- Convert Telethon to tdata: examples/convert-telethon-to-tdata.md
- Using official APIs: examples/using-official-apis.md
- Session JSON Format: examples/session-json-format.md
- Documentation:
- Home: documentation/README.md
- Telegram Desktop:
- Home: documentation/telegram-desktop/README.md
- TDesktop: documentation/telegram-desktop/tdesktop.md
- Account: documentation/telegram-desktop/account.md
- AuthKey: documentation/telegram-desktop/authkey.md
- MTP: documentation/telegram-desktop/mtp.md
- Telethon:
- Home: documentation/telethon/README.md
- TelegramClient: documentation/telethon/telegramclient.md
- Authorization:
- Home: documentation/authorization/README.md
- API: documentation/authorization/api.md
- LoginFlag: documentation/authorization/loginflag.md
- Fingerprints & Consistency:
- Home: documentation/fingerprints/README.md
- Exceptions:
- Home: documentation/exceptions/README.md
repo_url: https://github.com/DedInc/opentele2
site_author: DedInc
site_description: A python library created to make life easier for Telegram API Developers.
site_name: opentele2
theme:
custom_dir: theme
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.instant
- navigation.tracking
- navigation.expand
- navigation.indexes
- navigation.top
- navigation.footer
- content.code.copy
- content.tabs.link
- toc.follow
- search.suggest
- search.highlight
font:
text: Roboto
code: Roboto Mono
icon:
logo: material/book-open-page-variant
name: material
palette:
- scheme: default
primary: light blue
accent: deep purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: light blue
accent: deep purple
toggle:
icon: material/brightness-4
name: Switch to light mode