-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmkdocs.yml
More file actions
103 lines (99 loc) · 3 KB
/
Copy pathmkdocs.yml
File metadata and controls
103 lines (99 loc) · 3 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
site_name: rpc-project
site_description: Simple RPC service for controlling every aspect of a remote machine — a C server and a Python client.
site_url: https://doronz88.github.io/rpc-project/
repo_url: https://github.com/doronz88/rpc-project
repo_name: doronz88/rpc-project
edit_uri: edit/master/docs/
copyright: Licensed under GPL-3.0
theme:
name: material
custom_dir: overrides
logo: assets/logo.svg
favicon: assets/favicon.png
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.footer
- search.suggest
- search.highlight
- content.code.copy
- content.action.edit
- toc.follow
palette:
- media: "(prefers-color-scheme)"
toggle: { icon: material/brightness-auto, name: Switch to light mode }
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: teal
toggle: { icon: material/brightness-7, name: Switch to dark mode }
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: teal
toggle: { icon: material/brightness-4, name: Switch to system preference }
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src/rpcclient]
options:
docstring_style: sphinx
show_root_heading: true
show_source: true
show_signature_annotations: true
separate_signature: true
members_order: source
filters: ["!^_"]
heading_level: 2
- llmstxt:
markdown_description: >-
rpc-project: a C server and Python rpcclient for calling native functions and controlling a
remote machine (filesystem, processes, network, HID, ObjC, and more).
full_output: llms-full.txt
sections:
Getting started:
- index.md
- installation.md
Guides:
- guides/quickstart.md
- guides/calling-native-functions.md
API reference:
- api/index.md
- api/core.md
- api/clients.md
- api/darwin.md
- api/ios.md
markdown_extensions:
- admonition
- attr_list
- md_in_html
- tables
- toc: { permalink: true }
- pymdownx.highlight: { anchor_linenums: true }
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed: { alternate_style: true }
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- Home: index.md
- Installation: installation.md
- Guides:
- Quick start: guides/quickstart.md
- Calling native functions: guides/calling-native-functions.md
- API Reference:
- Overview: api/index.md
- Core client: api/core.md
- Platform clients: api/clients.md
- Darwin subsystems: api/darwin.md
- iOS subsystems: api/ios.md