-
Notifications
You must be signed in to change notification settings - Fork 15
/
mkdocs.yml
179 lines (177 loc) · 5.78 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
site_name: "Documentation"
site_dir: docs-site
repo_url: "https://github.com/trinsic-id/sdk"
edit_uri: edit/main/docs/
repo_name: trinsic-id/sdk
site_url: https://docs.trinsic.id
nav:
- Home: index.md
- Platform:
- Getting Started: guide/platform-walkthrough.md
- Trinsic Connect: guide/getting-started-trinsic-connect.md
- Dashboard:
- Ecosystem Branding: platform/ecosystem-branding.md
- Domain Verification: platform/domain-verification.md
- Authentication: platform/authentication.md
- Client-Side SDKs:
- Flutter: dart/index.md
- Browser: web/index.md
- React Native: web/index.md
- iOS: ios/index.md
- Android: android/index.md
- Server-Side SDKs:
- Dart: dart/index.md
- Node: node/index.md
- C#: dotnet/index.md
- Python: python/index.md
- Go: go/index.md
- Java: java/index.md
- Trinsic CLI: cli/index.md
- Learn:
- Introduction: learn/index.md
- Guide:
- Issuance: guide/issuance.md
- Verification: guide/verification.md
- Key Concepts:
- Ecosystems: learn/concepts/ecosystems.md
- Wallets: learn/concepts/wallets.md
- Credentials: learn/concepts/credentials.md
- Verifications: learn/concepts/verifications.md
- Credential Templates: learn/concepts/credential-templates.md
- Identifiers: learn/concepts/dids.md
- Trust Registries: learn/concepts/trust-registries.md
- Trinsic Standards: learn/platform/standards.md
- Resources:
- "Migration: From v1" : learn/resources/migrate.md
- "Migration: Account API": learn/resources/migrate-account.md
- Interactive API Experience: learn/resources/interactive-api.md
- Reference:
- Overview: reference/index.md
- APIs:
- Connect API: reference/services/connect-service.md
- Credential API: reference/services/credential-service.md
- File Management API: reference/services/file-management-service.md
- Provider API: reference/services/provider-service.md
- Credential Template API: reference/services/template-service.md
- Trust Registry API: reference/services/trust-registry-service.md
- Wallet API: reference/services/wallet-service.md
- Other Services:
- OpenID Credential Exchange: reference/other/openid.md
- Examples: examples/index.md
theme:
name: material
logo: _static/logo-title.svg
custom_dir: docs/overrides
favicon: _static/logo.png
features:
- navigation.tracking
- announce.dismiss
- navigation.tabs
- navigation.tabs.sticky
- navigation.expand
icon:
repo: fontawesome/brands/github-alt
font:
text: Inter
code: JetBrains Mono
palette:
- primary: custom
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: fontawesome/solid/cloud-moon
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: fontawesome/solid/sun
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
base_path: [".", "docs"]
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tasklist:
custom_checkbox: true
- attr_list
- def_list
- admonition
- pymdownx.details
- markdown.extensions.md_in_html
- toc:
permalink: true
toc_depth: 3
- abbr
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js
- _static/javascripts/config.js
- _static/javascripts/proto_functionality.js
- _static/javascripts/tab_sync.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/styles/vs.min.css
- _static/extra.css
extra:
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
generator: false
# homepage: learn # change or remove this when updating with new landing page
analytics:
provider: google
property: G-X19MMM47TF
feedback:
title: Did you find the help you needed?
ratings:
- icon: material/emoticon-outline
name: Yes, this page was helpful
data: 2
note: >-
Yes, this page was helpful
- icon: material/emoticon-neutral-outline
name: Sort of, still need help
data: 1
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="..." target="_blank" rel="noopener">feedback form</a>.
- icon: material/emoticon-cry-outline
name: No, this page wasn't helpful
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="https://github.com/trinsic-id/sdk/issues/new/?title=[Docs feedback]+{title}+-+{url}" target="_blank" rel="noopener">GitHub issue form</a>.
plugins:
- search
- badges
- glightbox
- macros:
module_name: mkdocs_macros_main
verbose: true
- autorefs
- codeinclude:
title_mode: none
- mkdocstrings:
handlers:
python:
setup_commands:
- import sys
- sys.path.append('python')
- sys.path.append('python/trinsic')
selection:
new_path_syntax: true
watch:
- python
- mkdocs_macros_main.py