-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
84 lines (84 loc) · 2.55 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
site_name: Session.js Docs
site_url: https://sessionjs.github.io/docs
repo_url: https://github.com/sessionjs/docs
repo_name: sessionjs/client
theme:
name: material
logo: assets/logo.jpeg
palette:
- scheme: default
primary: green
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: green
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.indexes
copyright: Created by Viktor Shchelochkov aka <a href="https://hloth.dev" target="_blank" rel="noreferrer">hloth.dev</a>
extra:
social:
- icon: material/pencil
link: https://github.com/sessionjs/docs
name: Edit documentation on GitHub
- icon: fontawesome/brands/github
link: https://github.com/sessionjs
name: Session.js on GitHub
- icon: fontawesome/brands/telegram
link: https://t.me/sessionjs
name: Session.js and other stuff Telegram channel
markdown_extensions:
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- admonition
- pymdownx.details
plugins:
- search
- mkdocs-simple-hooks:
hooks:
on_post_build: "docs.hooks:copy_get"
extra_css:
- css/custom.css
nav:
- Home:
- Home: index.md
- Getting started: getting-started.md
- Documentation:
- Sending messages: sending.md
- Polling messages: polling.md
- Events: events.md
- Storage:
- storage/index.md
- In-memory: storage/in-memory.md
- File-based persistant: storage/file-keyval.md
- Network:
- network/index.md
- Bun local: network/bun-local.md
- Bun remote: network/bun-remote.md
- Files and attachments: files-and-attachments.md
- Reactions: reactions.md
- Deleting messages: deleting-messages.md
- Set name and avatar: profile.md
- Mark message as read: mark-as-read.md
- Show or hide typing indicator: typing-indicator.md
- Accept conversation request: accept-conversation-request.md
- Send "screenshot taken" message: screenshot-taken-notification.md
- Send "media saved" message: media-saved-notification.md
- SOGS: sogs.md
- Error handling: error-handling.md
- Constants: constants.md
- How Session Works:
- Accounts in Session: principles/users.md
- Messages in Session: principles/messages.md
- Files in Session: principles/files.md
- Utilities:
- Mnemonic: mnemonic.md
- Oxen Name System (ONS): ons.md