Skip to content

Commit d45ec0d

Browse files
author
benoit-cty
committed
docs website
1 parent 56ac4c7 commit d45ec0d

27 files changed

+264
-379
lines changed

docs/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 6fab6ba8b08b27f1b70031950c82d429
3+
config: 53c61bd4c1857c7af88007809bfc8089
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_static/css/theme.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_static/doctools.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const Documentation = {
5959
Object.assign(Documentation.TRANSLATIONS, catalog.messages);
6060
Documentation.PLURAL_EXPR = new Function(
6161
"n",
62-
`return (${catalog.plural_expr})`
62+
`return (${catalog.plural_expr})`,
6363
);
6464
Documentation.LOCALE = catalog.locale;
6565
},
@@ -89,7 +89,7 @@ const Documentation = {
8989

9090
const togglerElements = document.querySelectorAll("img.toggler");
9191
togglerElements.forEach((el) =>
92-
el.addEventListener("click", (event) => toggler(event.currentTarget))
92+
el.addEventListener("click", (event) => toggler(event.currentTarget)),
9393
);
9494
togglerElements.forEach((el) => (el.style.display = ""));
9595
if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler);
@@ -98,14 +98,15 @@ const Documentation = {
9898
initOnKeyListeners: () => {
9999
// only install a listener if it is really needed
100100
if (
101-
!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS &&
102-
!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS
101+
!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS
102+
&& !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS
103103
)
104104
return;
105105

106106
document.addEventListener("keydown", (event) => {
107107
// bail for input elements
108-
if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return;
108+
if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName))
109+
return;
109110
// bail with special keys
110111
if (event.altKey || event.ctrlKey || event.metaKey) return;
111112

docs/_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const DOCUMENTATION_OPTIONS = {
2-
VERSION: '3.2.1',
2+
VERSION: '3.2.2',
33
LANGUAGE: 'en',
44
COLLAPSE_INDEX: false,
55
BUILDER: 'html',

docs/_static/language_data.js

Lines changed: 7 additions & 186 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)