forked from ourzora/offchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
65 lines (65 loc) · 1.77 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
site_name: offchain
repo_url: https://github.com/ourzora/offchain
repo_name: ourzora/offchain
nav:
- Getting Started: index.md
- Core Concepts: concepts.md
- Usage:
- Overview: usage/overview.md
- Customizing the Pipeline: usage/customize.md
- Interfaces:
- Token: models/token.md
- Metadata: models/metadata.md
- MetadataProcessingError: models/metadata_processing_error.md
- Pipeline:
- Pipeline: pipeline/pipeline.md
- Adapters: pipeline/adapters.md
- Fetchers: pipeline/fetchers.md
- Parsers: pipeline/parsers.md
- Contributing:
- Guidelines: contributing/guidelines.md
- Collection Parser: contributing/collection_parser.md
- Schema Parser: contributing/schema_parser.md
- Publishing a Release: contributing/publish_release.md
- Changelog: changelog.md
theme:
name: material
font:
text: Roboto Mono
palette:
# Palette toggle for dark mode
- scheme: slate
primary: black
toggle:
icon: material/weather-night
name: Switch to light mode
# Palette toggle for light mode
- scheme: default
primary: black
toggle:
icon: material/weather-sunny
name: Switch to dark mode
logo: assets/zorb.png
favicon: assets/zorb.png
plugins:
- search
- mkdocstrings:
custom_templates: templates
default_handler: python
handlers:
python:
options:
show_source: true
show_root_heading: false
show_root_toc_entry: false
show_bases: false
heading_level: 3
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences