-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
74 lines (68 loc) · 2.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
site_name: CATX
site_description: CATX Documentation
site_author: CATX Contributors
site_url: https://catx.readthedocs.io/
site_dir: public
repo_name: instadeepai/catx
repo_url: https://github.com/instadeepai/catx
strict: false # Don't allow warnings during the build process
theme:
name: material
language: en
palette:
# Light mode / dark mode
# We deliberately don't automatically use `media` to check a user's preferences. We default to light mode as
# (a) it looks more professional, and (b) is more obvious about the fact that it offers a dark mode (as there is a toggle).
- scheme: default
primary: white
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: black
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
logo: img/Logo_CatX_Icon_2.png
favicon: img/Logo_CatX_Icon_2.png
icon:
repo: fontawesome/brands/gitlab
features:
- navigation.tracking
- navigation.tabs
- toc.integrate
plugins:
- search
- mkdocstrings:
handlers:
python:
docstring_style: google
selection:
inherited_members: true # Allow looking up inherited methods
filters:
- '!^test'
- "!^_" # exclude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
rendering:
show_source: false # don't include source code (too cumbersome)
members_order: source # order methods according to their order of definition in the source code, not alphabetical order
# Strategy: Use an absolute path
markdown_extensions:
- pymdownx.pathconverter:
base_path: 'catx' # default: ''
relative_path: '' # default ''
absolute: false # default: false
tags: 'a script img link object embed'
nav:
- Home: index.md
- Installation: installation.md
- Getting started: getting_started.md
- From bandits to CATX: bandits.md
- Algorithm: artifacts/algo_catx_embed.md
- API Reference:
- tree: api/tree.md
- catx: api/catx.md
- network module: api/network_module.md
copyright: InstaDeep © 2022 Copyright, all rights reserved.