-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkdocs.yml
83 lines (75 loc) · 1.99 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
site_name: Telliot Feed Examples Documentation
# Project information
site_name: Telliot Feed Examples Documentation
site_url: https://tellor-io.github.io/telliot-feeds/
site_author: Tellor Development Community
site_description: >-
Contains examples and plugins for reporting to the TellorX Oracle.
# Repository
repo_name: tellor-io/telliot-feeds
repo_url: https://github.com/tellor-io/telliot-feeds
edit_uri: ""
# Copyright
copyright: Copyright (c) 2021-, Tellor Development Community
theme:
name: material
logo: assets/tellor_swoosh.png
favicon: assets/favicon-32x32.png
features:
# - navigation.tabs
- navigation.sections
palette:
primary: black
scheme: default
plugins:
- search
- autorefs
- mkdocstrings:
enable_inventory: true
watch:
- src
handlers:
python:
rendering:
show_root_heading: true
show_root_full_path: false
# show_category_heading: true
members_order: source
heading_level: 2
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- codehilite
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
nav:
- Home: index.md
- Getting started: getting-started.md
- Usage (telliot CLI): usage.md
- Contributing:
- Developer's Setup: contributing.md
- Add New Spot Price: add-spot-price.md
- Add New Chain: add-chain.md
- Add New Data Type (query type): new-query.md
- Documentation: documentation.md
- New Release Steps: new-release.md
- Code Reference:
- Queries Module:
- Query Types: code/query-types.md
- Query Base Classes: code/query-base-classes.md
- Query Catalog: code/query-catalog.md
- Data Feed Module: code/datafeed.md
- Types Module: code/dtypes.md