This repository has been archived by the owner on Mar 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmkdocs.yml
108 lines (100 loc) · 3.12 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
site_name: IDX Developers
site_url: https://developers.idx.xyz
site_description: Specs, docs, guides, and APIs for the IDX protocol
repo_url: https://github.com/ceramicstudio/js-idx
repo_name: ceramicstudio/js-idx
edit_uri: https://github.com/ceramicstudio/idx-docs/edit/main/docs/
# Copyright
copyright: 'IDX is open sourced under MIT and Apache 2'
theme:
name: material
custom_dir: overrides
# 404 page
static_templates:
- 404.html
palette:
scheme: default
logo: images/idx-white.svg
icon:
repo: fontawesome/brands/github-alt
favicon: images/icon-idx-favicon.png
features:
- navigation.instant
- navigation.tabs
- navigation.expand
- navigation.sections
- header.autohide
nav:
- Learn:
- Welcome: learn/welcome.md
- Overview: learn/overview.md
- Glossary: learn/glossary.md
- Packages: learn/packages.md
- Ecosystem: learn/ecosystem.md
- Build:
- Quick Start: build/quick-start.md
- Installation: build/installation.md
- Adding aliases: build/aliases.md
- Authentication: build/authentication.md
- Reading records: build/reading.md
- Writing records: build/writing.md
- Share your project: build/share.md
- Troubleshooting: build/troubleshooting.md
- Guides:
- Definitions:
- Default definitions: guides/definitions/default.md
- Existing definitions: guides/definitions/existing.md
- Creating definitions: guides/definitions/creating.md
- Storage:
- Ceramic storage: guides/storage/ceramic.md
# - Textile storage: guides/storage/textile.md
- CLI:
- Using the CLI: guides/cli.md
# - Development:
# - Server-side rendering: guides/advanced-development/server-side-rendering.md
# - Bootstrap scripts: guides/advanced-development/bootstrap-script.md
- Reference:
- IDX SDK: reference/idx.md
- IDX CLI: reference/cli.md
- IDX Tools: reference/idx-tools.md
- IDX Constants: reference/idx-constants.md
- Types: reference/types.md
- Dependency APIs: reference/dependency-apis.md
- Chat: 'https://chat.idx.xyz'
- Blog: 'https://blog.ceramic.network/tag/identity'
markdown_extensions:
- meta
- pymdownx.tabbed
- pymdownx.superfences
- admonition
- pymdownx.details
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.betterem:
smart_enable: all
- pymdownx.smartsymbols
- toc:
permalink: true
toc_depth: 3
extra:
generator: false
# Social icons in footer
social:
- icon: fontawesome/brands/github
link: https://github.com/ceramicnetwork/ceramic
name: Ceramicnetwork on Github
- icon: fontawesome/brands/twitter
link: https://twitter.com/ceramicnetwork
name: Ceramicnetwork on Twitter
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js
- javascripts/tables.js
extra_css:
- stylesheets/extra.css
plugins:
- search
- redirects:
redirect_maps:
'index.md': 'learn/welcome.md'