Skip to content

Commit

Permalink
Deployed 2298410 with MkDocs version: 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Oct 12, 2024
1 parent 740c1e2 commit 6e4a83a
Show file tree
Hide file tree
Showing 29 changed files with 533 additions and 365 deletions.
2 changes: 1 addition & 1 deletion 404.html

Large diffs are not rendered by default.

266 changes: 0 additions & 266 deletions assets/_markdown_exec_ansi.css

This file was deleted.

1 change: 1 addition & 0 deletions assets/_markdown_exec_pyodide.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ html[data-theme="dark"] {
.pyodide-output {
width: 100%;
margin-bottom: -15px;
min-height: 46px;
max-height: 400px
}

Expand Down
12 changes: 11 additions & 1 deletion assets/_mkdocstrings.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
margin-right: 0.2rem;
}

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

/* Symbols in Navigation and ToC. */
:root,
[data-md-color-scheme="default"] {
Expand Down Expand Up @@ -130,4 +135,9 @@ code.doc-symbol-module {

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

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

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions assets/javascripts/bundle.a255a381.min.js

This file was deleted.

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion assets/stylesheets/main.003a5498.min.css

This file was deleted.

1 change: 1 addition & 0 deletions assets/stylesheets/main.fd1ad6e4.min.css

Large diffs are not rendered by default.

36 changes: 35 additions & 1 deletion changelog/index.html

Large diffs are not rendered by default.

36 changes: 35 additions & 1 deletion code_of_conduct/index.html

Large diffs are not rendered by default.

43 changes: 38 additions & 5 deletions contributing/index.html

Large diffs are not rendered by default.

36 changes: 35 additions & 1 deletion credits/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/mkdocstrings.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ a.autorefs-external::after {

height: 1em;
width: 1em;
background-color: var(--md-typeset-a-color);
background-color: currentColor;
}

a.external:hover::after,
Expand Down
15 changes: 15 additions & 0 deletions css/timeago.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
timeago output is dynamic, which breaks when you print a page.
This CSS is only included when type: timeago
and ensures fallback to type "iso_date" when printing.
*/

.git-revision-date-localized-plugin-iso_date { display: none }

@media print {
.git-revision-date-localized-plugin-iso_date { display: inline }
.git-revision-date-localized-plugin-timeago { display: none }
}

39 changes: 37 additions & 2 deletions index.html

Large diffs are not rendered by default.

36 changes: 35 additions & 1 deletion insiders/changelog/index.html

Large diffs are not rendered by default.

36 changes: 35 additions & 1 deletion insiders/index.html

Large diffs are not rendered by default.

71 changes: 34 additions & 37 deletions insiders/installation/index.html

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions js/feedback.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const feedback = document.forms.feedback;
feedback.hidden = false;

feedback.addEventListener("submit", function(ev) {
ev.preventDefault();
const commentElement = document.getElementById("feedback");
commentElement.style.display = "block";
feedback.firstElementChild.disabled = true;
const data = ev.submitter.getAttribute("data-md-value");
const note = feedback.querySelector(".md-feedback__note [data-md-value='" + data + "']");
if (note) {
note.hidden = false;
}
})
2 changes: 2 additions & 0 deletions js/timeago.min.js

Large diffs are not rendered by default.

33 changes: 33 additions & 0 deletions js/timeago_mkdocs_material.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
// Script to ensure timeago keeps working when
// used with mkdocs-material's instant loading feature

function getLocale(element) {
var raw_locale = element.getAttribute('locale');
var locale = {
bn: 'bn_IN',
en: 'en_US',
hi: 'hi_IN',
id: 'id_ID',
nb: 'nb_NO',
nn: 'nn_NO',
pt: 'pt_BR',
zh: 'zh_CN'
}[raw_locale];
return locale ? locale : raw_locale;
}

if (typeof document$ !== "undefined") {
document$.subscribe(function() {
var nodes = document.querySelectorAll('.timeago');
if (nodes.length > 0) {
var locale = getLocale(nodes[0]);
timeago.render(nodes, locale);
}
})
} else {
var nodes = document.querySelectorAll('.timeago');
if (nodes.length > 0) {
var locale = getLocale(nodes[0]);
timeago.render(nodes, locale);
}
}
38 changes: 36 additions & 2 deletions license/index.html

Large diffs are not rendered by default.

36 changes: 35 additions & 1 deletion reference/SUMMARY/index.html

Large diffs are not rendered by default.

54 changes: 44 additions & 10 deletions reference/markdown_pycon/debug/index.html

Large diffs are not rendered by default.

40 changes: 37 additions & 3 deletions reference/markdown_pycon/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Loading

0 comments on commit 6e4a83a

Please sign in to comment.