-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
134 lines (120 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
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
# Project information
site_name: Weco AI
site_url: https://WecoAI.github.io/weco-python
site_author: Weco AI
site_description: >-
Documentation for weco, a client facing API for interacting with the Weco AI function builder service.
docs_dir: docs
site_dir: site
use_directory_urls: true
# Repository
repo_name: weco-python
repo_url: https://github.com/WecoAI/weco-python
remote_branch: gh-pages
remote_name: origin
# Copyright
copyright: null
# Configuration
theme:
name: material
locale: en
custom_dir: .overrides
features:
- content.code.annotate
- content.code.copy
- navigation.footer
- navigation.indexes
- navigation.tabs
- navigation.top
- navigation.tracking
- navigation.collapse
- search.highlight
- search.share
- search.suggest
- toc.follow
- social
palette:
- scheme: default
primary: deep orange
accent: deep orange
toggle:
icon: material/brightness-7
name: Dark Mode
- scheme: slate
primary: deep orange
accent: deep orange
toggle:
icon: material/brightness-4
name: Light Mode
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
logo: custom/weco
favicon: assets/weco.svg
include_homepage_in_sidebar: true
highlightjs: true
hijs_languages:
- python
# Plugins
plugins:
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- minify:
minify_html: true
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [weco]
options:
docstring_style: numpy
separate_signature: true
show_signature_annotations: false
show_source: false
heading_level: 2
# Customization
extra:
social:
# Weco AI
- icon: fontawesome/solid/house
link: https://weco.ai/
- icon: fontawesome/brands/github-alt
link: https://github.com/WecoAI/weco-python
- icon: fontawesome/brands/twitter
link: https://twitter.com/WecoAI
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/weco-ai/
extra_javascript:
- javascripts/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js # (1)!
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
# Extensions
markdown_extensions:
- toc:
permalink: true
separator: "_"
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
# Page treec
nav:
- 'About': index.md
- 'Getting Started' :
- 'Installation' : 'getting_started/installation.md'
- 'Introduction' : 'getting_started/introduction.md'
- 'Cookbook': 'cookbook/cookbook.md'
- 'API Reference':
- 'Reference Guide' : 'api/api.md'
- 'WecoAI Client': api/client.md
- 'WecoAI Functions': api/functional.md
- 'Contributing': contributing.md