Skip to content

Commit

Permalink
Deployed 859bb06 with MkDocs version: 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
barbibulle committed Feb 8, 2025
1 parent 75194f5 commit 5104981
Show file tree
Hide file tree
Showing 82 changed files with 18,150 additions and 2,963 deletions.
223 changes: 188 additions & 35 deletions 404.html

Large diffs are not rendered by default.

231 changes: 196 additions & 35 deletions api/examples.html

Large diffs are not rendered by default.

237 changes: 199 additions & 38 deletions api/guide.html

Large diffs are not rendered by default.

1,498 changes: 969 additions & 529 deletions api/reference.html

Large diffs are not rendered by default.

2,414 changes: 2,414 additions & 0 deletions apps_and_tools/auracast.html

Large diffs are not rendered by default.

309 changes: 252 additions & 57 deletions apps_and_tools/bench.html

Large diffs are not rendered by default.

237 changes: 199 additions & 38 deletions apps_and_tools/console.html

Large diffs are not rendered by default.

231 changes: 196 additions & 35 deletions apps_and_tools/gatt_dump.html

Large diffs are not rendered by default.

231 changes: 196 additions & 35 deletions apps_and_tools/gg_bridge.html

Large diffs are not rendered by default.

243 changes: 207 additions & 36 deletions apps_and_tools/hci_bridge.html

Large diffs are not rendered by default.

254 changes: 208 additions & 46 deletions apps_and_tools/index.html

Large diffs are not rendered by default.

231 changes: 196 additions & 35 deletions apps_and_tools/link_relay.html

Large diffs are not rendered by default.

231 changes: 196 additions & 35 deletions apps_and_tools/pair.html

Large diffs are not rendered by default.

231 changes: 196 additions & 35 deletions apps_and_tools/show.html

Large diffs are not rendered by default.

231 changes: 196 additions & 35 deletions apps_and_tools/speaker.html

Large diffs are not rendered by default.

231 changes: 196 additions & 35 deletions apps_and_tools/unbond.html

Large diffs are not rendered by default.

240 changes: 203 additions & 37 deletions apps_and_tools/usb_probe.html

Large diffs are not rendered by default.

127 changes: 103 additions & 24 deletions assets/_mkdocstrings.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,39 +26,118 @@
float: right;
}

/* Keep headings consistent. */
h1.doc-heading,
h2.doc-heading,
h3.doc-heading,
h4.doc-heading,
h5.doc-heading,
h6.doc-heading {
font-weight: 400;
line-height: 1.5;
color: inherit;
text-transform: none;
/* Parameter headings must be inline, not blocks. */
.doc-heading-parameter {
display: inline;
}

/* Prefer space on the right, not the left of parameter permalinks. */
.doc-heading-parameter .headerlink {
margin-left: 0 !important;
margin-right: 0.2rem;
}

/* Backward-compatibility: docstring section titles in bold. */
.doc-section-title {
font-weight: bold;
}

/* Symbols in Navigation and ToC. */
:root, :host,
[data-md-color-scheme="default"] {
--doc-symbol-parameter-fg-color: #df50af;
--doc-symbol-attribute-fg-color: #953800;
--doc-symbol-function-fg-color: #8250df;
--doc-symbol-method-fg-color: #8250df;
--doc-symbol-class-fg-color: #0550ae;
--doc-symbol-module-fg-color: #5cad0f;

--doc-symbol-parameter-bg-color: #df50af1a;
--doc-symbol-attribute-bg-color: #9538001a;
--doc-symbol-function-bg-color: #8250df1a;
--doc-symbol-method-bg-color: #8250df1a;
--doc-symbol-class-bg-color: #0550ae1a;
--doc-symbol-module-bg-color: #5cad0f1a;
}

[data-md-color-scheme="slate"] {
--doc-symbol-parameter-fg-color: #ffa8cc;
--doc-symbol-attribute-fg-color: #ffa657;
--doc-symbol-function-fg-color: #d2a8ff;
--doc-symbol-method-fg-color: #d2a8ff;
--doc-symbol-class-fg-color: #79c0ff;
--doc-symbol-module-fg-color: #baff79;

--doc-symbol-parameter-bg-color: #ffa8cc1a;
--doc-symbol-attribute-bg-color: #ffa6571a;
--doc-symbol-function-bg-color: #d2a8ff1a;
--doc-symbol-method-bg-color: #d2a8ff1a;
--doc-symbol-class-bg-color: #79c0ff1a;
--doc-symbol-module-bg-color: #baff791a;
}

code.doc-symbol {
border-radius: .1rem;
font-size: .85em;
padding: 0 .3em;
font-weight: bold;
}

code.doc-symbol-parameter {
color: var(--doc-symbol-parameter-fg-color);
background-color: var(--doc-symbol-parameter-bg-color);
}

code.doc-symbol-parameter::after {
content: "param";
}

code.doc-symbol-attribute {
color: var(--doc-symbol-attribute-fg-color);
background-color: var(--doc-symbol-attribute-bg-color);
}

code.doc-symbol-attribute::after {
content: "attr";
}

h1.doc-heading {
font-size: 1.6rem;
code.doc-symbol-function {
color: var(--doc-symbol-function-fg-color);
background-color: var(--doc-symbol-function-bg-color);
}

h2.doc-heading {
font-size: 1.2rem;
code.doc-symbol-function::after {
content: "func";
}

h3.doc-heading {
font-size: 1.15rem;
code.doc-symbol-method {
color: var(--doc-symbol-method-fg-color);
background-color: var(--doc-symbol-method-bg-color);
}

h4.doc-heading {
font-size: 1.10rem;
code.doc-symbol-method::after {
content: "meth";
}

h5.doc-heading {
font-size: 1.05rem;
code.doc-symbol-class {
color: var(--doc-symbol-class-fg-color);
background-color: var(--doc-symbol-class-bg-color);
}

h6.doc-heading {
font-size: 1rem;
}
code.doc-symbol-class::after {
content: "class";
}

code.doc-symbol-module {
color: var(--doc-symbol-module-fg-color);
background-color: var(--doc-symbol-module-bg-color);
}

code.doc-symbol-module::after {
content: "mod";
}

.doc-signature .autorefs {
color: inherit;
border-bottom: 1px dotted currentcolor;
}
16 changes: 16 additions & 0 deletions assets/javascripts/bundle.5090c770.min.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions assets/javascripts/bundle.5090c770.min.js.map

Large diffs are not rendered by default.

29 changes: 0 additions & 29 deletions assets/javascripts/bundle.aecac24b.min.js

This file was deleted.

7 changes: 0 additions & 7 deletions assets/javascripts/bundle.aecac24b.min.js.map

This file was deleted.

1 change: 1 addition & 0 deletions assets/javascripts/lunr/min/lunr.el.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5104981

Please sign in to comment.