Skip to content

Commit dc45a14

Browse files
author
github-actions
committed
Deployed 898c8fd to 2.0.0 with MkDocs 1.6.1 and mike 2.1.3
1 parent 8b10e5e commit dc45a14

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+9418
-3
lines changed

2.0.0/404.html

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

2.0.0/about/changelog/index.html

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

2.0.0/about/contributing/index.html

Lines changed: 4 additions & 0 deletions
Large diffs are not rendered by default.

2.0.0/about/license/index.html

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

2.0.0/assets/_mkdocstrings.css

Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
2+
/* Avoid breaking parameter names, etc. in table cells. */
3+
.doc-contents td code {
4+
word-break: normal !important;
5+
}
6+
7+
/* No line break before first paragraph of descriptions. */
8+
.doc-md-description,
9+
.doc-md-description>p:first-child {
10+
display: inline;
11+
}
12+
13+
/* No text transformation from Material for MkDocs for H5 headings. */
14+
.md-typeset h5 .doc-object-name {
15+
text-transform: none;
16+
}
17+
18+
/* Max width for docstring sections tables. */
19+
.doc .md-typeset__table,
20+
.doc .md-typeset__table table {
21+
display: table !important;
22+
width: 100%;
23+
}
24+
25+
.doc .md-typeset__table tr {
26+
display: table-row;
27+
}
28+
29+
/* Defaults in Spacy table style. */
30+
.doc-param-default {
31+
float: right;
32+
}
33+
34+
/* Parameter headings must be inline, not blocks. */
35+
.doc-heading-parameter {
36+
display: inline;
37+
}
38+
39+
/* Default font size for parameter headings. */
40+
.md-typeset .doc-heading-parameter {
41+
font-size: inherit;
42+
}
43+
44+
/* Prefer space on the right, not the left of parameter permalinks. */
45+
.doc-heading-parameter .headerlink {
46+
margin-left: 0 !important;
47+
margin-right: 0.2rem;
48+
}
49+
50+
/* Backward-compatibility: docstring section titles in bold. */
51+
.doc-section-title {
52+
font-weight: bold;
53+
}
54+
55+
/* Backlinks crumb separator. */
56+
.doc-backlink-crumb {
57+
display: inline-flex;
58+
gap: .2rem;
59+
white-space: nowrap;
60+
align-items: center;
61+
vertical-align: middle;
62+
}
63+
.doc-backlink-crumb:not(:first-child)::before {
64+
background-color: var(--md-default-fg-color--lighter);
65+
content: "";
66+
display: inline;
67+
height: 1rem;
68+
--md-path-icon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.59 16.58 13.17 12 8.59 7.41 10 6l6 6-6 6z"/></svg>');
69+
-webkit-mask-image: var(--md-path-icon);
70+
mask-image: var(--md-path-icon);
71+
width: 1rem;
72+
}
73+
.doc-backlink-crumb.last {
74+
font-weight: bold;
75+
}
76+
77+
/* Symbols in Navigation and ToC. */
78+
:root, :host,
79+
[data-md-color-scheme="default"] {
80+
--doc-symbol-parameter-fg-color: #df50af;
81+
--doc-symbol-attribute-fg-color: #953800;
82+
--doc-symbol-function-fg-color: #8250df;
83+
--doc-symbol-method-fg-color: #8250df;
84+
--doc-symbol-class-fg-color: #0550ae;
85+
--doc-symbol-module-fg-color: #5cad0f;
86+
87+
--doc-symbol-parameter-bg-color: #df50af1a;
88+
--doc-symbol-attribute-bg-color: #9538001a;
89+
--doc-symbol-function-bg-color: #8250df1a;
90+
--doc-symbol-method-bg-color: #8250df1a;
91+
--doc-symbol-class-bg-color: #0550ae1a;
92+
--doc-symbol-module-bg-color: #5cad0f1a;
93+
}
94+
95+
[data-md-color-scheme="slate"] {
96+
--doc-symbol-parameter-fg-color: #ffa8cc;
97+
--doc-symbol-attribute-fg-color: #ffa657;
98+
--doc-symbol-function-fg-color: #d2a8ff;
99+
--doc-symbol-method-fg-color: #d2a8ff;
100+
--doc-symbol-class-fg-color: #79c0ff;
101+
--doc-symbol-module-fg-color: #baff79;
102+
103+
--doc-symbol-parameter-bg-color: #ffa8cc1a;
104+
--doc-symbol-attribute-bg-color: #ffa6571a;
105+
--doc-symbol-function-bg-color: #d2a8ff1a;
106+
--doc-symbol-method-bg-color: #d2a8ff1a;
107+
--doc-symbol-class-bg-color: #79c0ff1a;
108+
--doc-symbol-module-bg-color: #baff791a;
109+
}
110+
111+
code.doc-symbol {
112+
border-radius: .1rem;
113+
font-size: .85em;
114+
padding: 0 .3em;
115+
font-weight: bold;
116+
}
117+
118+
code.doc-symbol-parameter,
119+
a code.doc-symbol-parameter {
120+
color: var(--doc-symbol-parameter-fg-color);
121+
background-color: var(--doc-symbol-parameter-bg-color);
122+
}
123+
124+
code.doc-symbol-parameter::after {
125+
content: "param";
126+
}
127+
128+
code.doc-symbol-attribute,
129+
a code.doc-symbol-attribute {
130+
color: var(--doc-symbol-attribute-fg-color);
131+
background-color: var(--doc-symbol-attribute-bg-color);
132+
}
133+
134+
code.doc-symbol-attribute::after {
135+
content: "attr";
136+
}
137+
138+
code.doc-symbol-function,
139+
a code.doc-symbol-function {
140+
color: var(--doc-symbol-function-fg-color);
141+
background-color: var(--doc-symbol-function-bg-color);
142+
}
143+
144+
code.doc-symbol-function::after {
145+
content: "func";
146+
}
147+
148+
code.doc-symbol-method,
149+
a code.doc-symbol-method {
150+
color: var(--doc-symbol-method-fg-color);
151+
background-color: var(--doc-symbol-method-bg-color);
152+
}
153+
154+
code.doc-symbol-method::after {
155+
content: "meth";
156+
}
157+
158+
code.doc-symbol-class,
159+
a code.doc-symbol-class {
160+
color: var(--doc-symbol-class-fg-color);
161+
background-color: var(--doc-symbol-class-bg-color);
162+
}
163+
164+
code.doc-symbol-class::after {
165+
content: "class";
166+
}
167+
168+
code.doc-symbol-module,
169+
a code.doc-symbol-module {
170+
color: var(--doc-symbol-module-fg-color);
171+
background-color: var(--doc-symbol-module-bg-color);
172+
}
173+
174+
code.doc-symbol-module::after {
175+
content: "mod";
176+
}
177+
178+
.doc-signature .autorefs {
179+
color: inherit;
180+
border-bottom: 1px dotted currentcolor;
181+
}

2.0.0/assets/css/admonition.css

Lines changed: 160 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
[data-md-color-scheme="slate"] {
2+
--admonition-border-color: transparent;
3+
--admonition-expanded-border-color: rgba(255, 255, 255, 0.1);
4+
--note-bg-color: rgba(43, 110, 98, 0.2);
5+
--terminal-bg-color: #0c0c0c;
6+
--terminal-title-bg-color: #000;
7+
--deep-dive-bg-color: rgba(43, 52, 145, 0.2);
8+
--you-will-learn-bg-color: #353a45;
9+
--pitfall-bg-color: rgba(182, 87, 0, 0.2);
10+
}
11+
[data-md-color-scheme="default"] {
12+
--admonition-border-color: rgba(0, 0, 0, 0.08);
13+
--admonition-expanded-border-color: var(--admonition-border-color);
14+
--note-bg-color: rgb(244, 251, 249);
15+
--terminal-bg-color: rgb(64, 71, 86);
16+
--terminal-title-bg-color: rgb(35, 39, 47);
17+
--deep-dive-bg-color: rgb(243, 244, 253);
18+
--you-will-learn-bg-color: rgb(246, 247, 249);
19+
--pitfall-bg-color: rgb(254, 245, 231);
20+
}
21+
22+
.md-typeset details,
23+
.md-typeset .admonition {
24+
border-color: var(--admonition-border-color) !important;
25+
box-shadow: none;
26+
}
27+
28+
.md-typeset :is(.admonition, details) {
29+
margin: 0.55em 0;
30+
}
31+
32+
.md-typeset .admonition {
33+
font-size: 0.7rem;
34+
}
35+
36+
.md-typeset .admonition:focus-within,
37+
.md-typeset details:focus-within {
38+
box-shadow: none !important;
39+
}
40+
41+
.md-typeset details[open] {
42+
border-color: var(--admonition-expanded-border-color) !important;
43+
}
44+
45+
/*
46+
Admonition: "summary"
47+
React Name: "You will learn"
48+
*/
49+
.md-typeset .admonition.summary {
50+
background: var(--you-will-learn-bg-color);
51+
padding: 0.8rem 1.4rem;
52+
border-radius: 0.8rem;
53+
}
54+
55+
.md-typeset .summary .admonition-title {
56+
font-size: 1rem;
57+
background: transparent;
58+
padding-left: 0.6rem;
59+
padding-bottom: 0;
60+
}
61+
62+
.md-typeset .summary .admonition-title:before {
63+
display: none;
64+
}
65+
66+
.md-typeset .admonition.summary {
67+
border-color: #ffffff17 !important;
68+
}
69+
70+
/*
71+
Admonition: "abstract"
72+
React Name: "Note"
73+
*/
74+
.md-typeset .admonition.abstract {
75+
background: var(--note-bg-color);
76+
padding: 0.8rem 1.4rem;
77+
border-radius: 0.8rem;
78+
}
79+
80+
.md-typeset .abstract .admonition-title {
81+
font-size: 1rem;
82+
background: transparent;
83+
padding-bottom: 0;
84+
color: rgb(68, 172, 153);
85+
}
86+
87+
.md-typeset .abstract .admonition-title:before {
88+
font-size: 1.1rem;
89+
background: rgb(68, 172, 153);
90+
}
91+
92+
/*
93+
Admonition: "warning"
94+
React Name: "Pitfall"
95+
*/
96+
.md-typeset .admonition.warning {
97+
background: var(--pitfall-bg-color);
98+
padding: 0.8rem 1.4rem;
99+
border-radius: 0.8rem;
100+
}
101+
102+
.md-typeset .warning .admonition-title {
103+
font-size: 1rem;
104+
background: transparent;
105+
padding-bottom: 0;
106+
color: rgb(219, 125, 39);
107+
}
108+
109+
.md-typeset .warning .admonition-title:before {
110+
font-size: 1.1rem;
111+
background: rgb(219, 125, 39);
112+
}
113+
114+
/*
115+
Admonition: "info"
116+
React Name: "Deep Dive"
117+
*/
118+
.md-typeset .admonition.info {
119+
background: var(--deep-dive-bg-color);
120+
padding: 0.8rem 1.4rem;
121+
border-radius: 0.8rem;
122+
}
123+
124+
.md-typeset .info .admonition-title {
125+
font-size: 1rem;
126+
background: transparent;
127+
padding-bottom: 0;
128+
color: rgb(136, 145, 236);
129+
}
130+
131+
.md-typeset .info .admonition-title:before {
132+
font-size: 1.1rem;
133+
background: rgb(136, 145, 236);
134+
}
135+
136+
/*
137+
Admonition: "example"
138+
React Name: "Terminal"
139+
*/
140+
.md-typeset .admonition.example {
141+
background: var(--terminal-bg-color);
142+
border-radius: 0.4rem;
143+
overflow: hidden;
144+
border: none;
145+
}
146+
147+
.md-typeset .example .admonition-title {
148+
background: var(--terminal-title-bg-color);
149+
color: rgb(246, 247, 249);
150+
}
151+
152+
.md-typeset .example .admonition-title:before {
153+
background: rgb(246, 247, 249);
154+
}
155+
156+
.md-typeset .admonition.example code {
157+
background: transparent;
158+
color: #fff;
159+
box-shadow: none;
160+
}

2.0.0/assets/css/banner.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
body[data-md-color-scheme="slate"] {
2+
--md-banner-bg-color: rgb(55, 81, 78);
3+
--md-banner-font-color: #fff;
4+
}
5+
6+
body[data-md-color-scheme="default"] {
7+
--md-banner-bg-color: #ff9;
8+
--md-banner-font-color: #000;
9+
}
10+
11+
.md-banner--warning {
12+
background-color: var(--md-banner-bg-color);
13+
color: var(--md-banner-font-color);
14+
text-align: center;
15+
}

0 commit comments

Comments
 (0)