-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
138 lines (124 loc) · 3.22 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
# Project information
site_name: AI Function
site_url: https://WecoAI.github.io/aifn-python
site_author: Weco AI
site_description: >-
Documentation for `aifn`, a client-side API for interacting with Weco AI's AI functions.
docs_dir: docs
site_dir: site
use_directory_urls: true
# Repository
repo_name: aifn-python
repo_url: https://github.com/WecoAI/aifn-python
remote_branch: gh-pages
remote_name: origin
# Copyright
copyright: Copyright © 2024 Weco AI
# 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: white
accent: deep orange
toggle:
icon: material/brightness-7
name: Dark Mode
- scheme: slate
primary: black
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: [aifn]
options:
docstring_style: numpy
separate_signature: true
show_signature_annotations: false
show_source: false
heading_level: 2
show_symbol_type_toc: true
members_order: source
merge_init_into_class: true
# Customization
extra:
social:
- icon: fontawesome/solid/house
link: https://weco.ai/
- icon: fontawesome/brands/github-alt
link: https://github.com/WecoAI/aifn-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
- javascripts/mathjax.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:
- stylesheets/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
- attr_list
- md_in_html
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.blocks.caption
# Page tree
nav:
- 'About': index.md
- 'Getting Started' :
- 'Installation' : 'getting_started/installation.md'
- 'Introduction' : 'getting_started/introduction.md'
- 'Cookbook': 'cookbook/cookbook.md'
- 'API Reference': 'api/api.md'
- 'Contributing': contributing.md