-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
133 lines (122 loc) · 3.35 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
site_name: Anterior
site_url: https://docs.cubyc.com/anterior
repo_name: "cubyc-team/anterior"
repo_url: https://github.com/cubyc-team/anterior
theme:
name: "material"
custom_dir: docs/overrides
features:
- content.code.copy
- navigation.tabs
- navigation.footer
- content.code.annotate
- navigation.indexes
- navigation.top
- search.suggest
- search-highlight
- content.tabs.link
- header.autohide
- announce.dismiss
palette:
- media: '(prefers-color-scheme: light)'
primary: custom
accent: custom
background: custom
foreground: custom
scheme: light
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
primary: custom
accent: custom
background: custom
foreground: custom
scheme: slate
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
icon:
repo: fontawesome/brands/github
font:
text: 'Schibsted Grotesk'
logo: img/logo.svg
favicon: img/favicon.svg
extra_css:
- stylesheets/custom.css
plugins:
- search
- social:
cards_layout_options:
background_color: "#82b482"
- autorefs
- site-urls
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
show_symbol_type_heading: true
show_symbol_type_toc: true
show_source: false
show_bases: false
inherited_members: true
members_order: source
separate_signature: true
unwrap_annotated: true
merge_init_into_class: true
docstring_section_style: spacy
signature_crossrefs: true
show_root_heading: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- admonition
- attr_list
- md_in_html
- pymdownx.tabbed:
alternate_style: true
- pymdownx.blocks.details
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- tables
- footnotes
nav:
- Home: index.md
- Getting Started:
- getting_started/index.md
- 'Concepts': getting_started/concepts.md
- 'FAQ': getting_started/faq.md
- 'Community': getting_started/community.md
- 'Tutorials':
- 'Algorithmic trading': tutorials/trading.md
- 'Marketing analytics': tutorials/marketing.md
- 'Sales forecasting': tutorials/sales.md
- Documentation:
- Source:
- OracleDataFrame: documentation/source/oracle_data_frame.md
- OracleSeries: documentation/source/oracle_series.md
- Warp:
- 'BackTester': documentation/warp/backtester.md
- 'Schedule': documentation/warp/schedule.md
extra:
social:
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/cubyc
- icon: fontawesome/brands/x-twitter
link: https://x.com/cubyc_
- icon: fontawesome/brands/github
link: https://github.com/cubyc-team/cubyc
analytics:
provider: google
property: G-42Y40W2GSK
generator: false
copyright: Copyright © 2024 Cubyc, Inc.