-
Notifications
You must be signed in to change notification settings - Fork 32
/
mkdocs.yaml
105 lines (99 loc) · 2.98 KB
/
mkdocs.yaml
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
nav:
- Home: index.md
- Tutorials:
- Getting Started with Cherry: tutorials/getting_started.md
# - debugging: tutorials/debugging_rl.md
# - distributed: tutorials/distributed_ppo.md
# - recurrent_a2c: tutorials/recurrent_a2c.md
- Documentation:
- cherry: api/cherry.md
- cherry.algorithms: api/cherry.algorithms.md
- cherry.debug: api/cherry.debug.md
- cherry.distributions: api/cherry.distributions.md
- cherry.envs: api/cherry.envs.md
- cherry.models: api/cherry.models.md
- cherry.nn: api/cherry.nn.md
- cherry.nn.init: api/cherry.nn.init.md
- cherry.optim: api/cherry.optim.md
- cherry.pg: api/cherry.pg.md
- cherry.plot: api/cherry.plot.md
- cherry.td: api/cherry.td.md
- cherry.wrappers: api/cherry.wrappers.md
- Changelog: changelog.md
- Examples: https://github.com/learnables/cherry/tree/master/examples
- GitHub: https://github.com/learnables/cherry/
docs_dir: ./docs
site_name: cherry
site_url: http://learnables.github.io/cherry
site_author: 'Séb Arnold'
google_analytics: ['UA-68693545-3', 'seba-1511.github.com']
repo_name: 'learnables/cherry'
repo_url: 'https://github.com/learnables/cherry'
edit_uri: ''
theme:
name: 'material'
logo: 'assets/images/cherry_cropped.png'
favicon: 'assets/images/favicons/favicon.ico'
palette:
primary: 'white'
accent: 'deep orange'
font:
text: 'Source Sans Pro'
code: 'Ubuntu Mono'
features:
- header.autohide
extra_javascript:
- https://cdn.jsdelivr.net/npm/katex/dist/katex.min.js
- https://cdn.jsdelivr.net/npm/katex/dist/contrib/mathtex-script-type.min.js
extra_css:
- https://cdn.jsdelivr.net/npm/katex/dist/katex.min.css
- 'assets/css/custom.css'
extra:
social:
- type: 'github'
link: 'https://github.com/seba-1511'
- type: 'twitter'
link: 'https://twitter.com/seba1511'
- type: 'bug'
link: 'https://github.com/learnables/cherry/issues/new'
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
# setup_commands:
# - import pytkdocs_tweaks
# - pytkdocs_tweaks.main()
selection:
inherited_members: true
rendering:
show_source: false
show_root_heading: true
show_root_full_path: true
show_category_heading: true
show_signature: true
show_signature_annotations: true
separate_signature: false
group_by_category: false
member_order: 'source'
show_bases: false
show_if_no_docstring: true
show_submodules: false
heading_level: 3
markdown_extensions:
- mdx_math:
enable_dollar_delimiter: True
- admonition
- pymdownx.superfences
- pymdownx.details
- codehilite:
guess_lang: true
linenums: true
- toc:
permalink: true
toc_depth: 4
- markdown_katex:
no_inline_svg: True
insert_fonts_css: True