-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmkdocs.yml
118 lines (109 loc) · 3.41 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
site_name: fabric-cicd
repo_name: microsoft/fabric-cicd
repo_url: https://github.com/microsoft/fabric-cicd
site_url: https://microsoft.github.io/fabric-cicd/
remote_branch: gh-pages
remote_name: origin
nav:
- Home: index.md
- How To:
- Getting Started: how_to/getting_started.md
- Parameterization: how_to/parameterization.md
- Examples: how_to/example.md
- Code Reference: code_reference.md
- Contribution: contribution.md
- Changelog: changelog.md
- About: about.md
theme:
name: material
custom_dir: docs/config/overrides
icon:
logo: fontawesome/solid/code
favicon: config/assets/favicon.ico
font:
text: Roboto
code: Roboto Mono
features:
- content.code.copy
- content.tooltips
- navigation.expand
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- search.highlight
- search.suggest
- toc.follow
- toc.integrate
- announce.dismiss
language: en
palette:
scheme: fabric
extra_css:
- config/stylesheets/extra.css
plugins:
- search:
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- minify:
minify_html: true
- include-markdown
- mkdocstrings:
handlers:
python:
paths: ["src"]
options:
docstring_style: numpy
docstring_options:
ignore_init_summary: true
summary:
modules: false
functions: true
classes: true
show_source: false
show_root_full_path: false
separate_signature: true
show_signature_annotations: true
signature_crossrefs: true
filters: ["!^_", "^__init__$"]
merge_init_into_class: true
show_symbol_type_heading: true
show_symbol_type_toc: true
line_length: 80
extra:
version:
provider: mike
default: latest
alias: true
social:
- icon: fontawesome/brands/github
link: https://github.com/microsoft/fabric-cicd
generator: false
analytics:
feedback:
title: Was this page helpful?
ratings:
- icon: material/thumb-up-outline
name: This page was helpful
data: 1
note: Thanks for your feedback!
- icon: material/thumb-down-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by using our
<a href="https://github.com/microsoft/fabric-cicd/issues/new?template=bug_report.md&documentation-location={url}" target="_blank" rel="noopener">feedback form</a>.
markdown_extensions:
- abbr
- md_in_html
- toc:
permalink: true
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
copyright: Copyright © Microsoft Corporation