-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
69 lines (64 loc) · 1.91 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
site_name: pyratings
repo_url: https://github.com/hsbc/pyratings
site_description: pyratings - Working with credit ratings, professionally and efficiently
site_author: HSBC
edit_uri: edit/main/docs
# use_directory_urls: false
theme:
name: material
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
nav:
- Overview: index.md
- Long-term ratings: long_term_ratings.md
- Short-term ratings: short_term_ratings.md
- User guide:
- Data cleansing: ./user_guide/cleansing.ipynb
- Consolidate ratings: ./user_guide/consolidate.ipynb
- Translate ratings: ./user_guide/translation.ipynb
- Use cases:
- Prepare your ratings: ./case_studies/prepare_rtg.ipynb
- Compute portfolio average long-term rating: ./case_studies/avg_port_lt_rtg.ipynb
- Compute portfolio average short-term rating: ./case_studies/avg_port_st_rtg.ipynb
- Compute portfolio WARF: ./case_studies/port_warf.ipynb
- API Reference: api_reference.md
- Contributing: contributing.md
- Code of conduct: code_of_conduct.md
- Changelog: changelog.md
- License: license.md
watch:
- src/pyratings
- README.md
- CHANGELOG.md
- CONTRIBUTING.md
- CODE_OF_CONDUCT.md
- LICENSE
markdown_extensions:
- footnotes
- pymdownx.snippets:
check_paths: true
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
options:
heading_level: 3
show_root_heading: false
show_root_toc_entry: false
show_source: false
docstring_style: numpy
docstring_section_style: table # {table, list, spacy}
separate_signature: true
- mkdocs-jupyter:
execute: true
allow_errors: false