Skip to content

Commit c1d0743

Browse files
author
committed
Deployed 1e93576 with MkDocs version: 1.6.1
1 parent 32eb57f commit c1d0743

File tree

132 files changed

+73183
-338583
lines changed

Some content is hidden

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

132 files changed

+73183
-338583
lines changed

404.html

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

about/changelog/index.html

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

about/code/index.html

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

about/community/index.html

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

about/docs/index.html

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

about/licenses/index.html

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

about/running-tests/index.html

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

assets/_mkdocstrings.css

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

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+
}

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)