build based on bf45227

This commit is contained in:
Documenter.jl 2023-10-16 12:03:43 +00:00
parent d51f515e99
commit 96c390a5bf
41 changed files with 10434 additions and 90 deletions

View File

@ -1 +1 @@
{"documenter":{"julia_version":"1.9.3","generation_timestamp":"2023-10-02T09:01:47","documenter_version":"1.1.0"}} {"documenter":{"julia_version":"1.9.3","generation_timestamp":"2023-10-16T12:03:36","documenter_version":"1.1.1"}}

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

View File

@ -75,11 +75,13 @@ $(document).ready(function() {
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
require(['jquery'], function($) { require(['jquery'], function($) {
let timer = 0;
var isExpanded = true; var isExpanded = true;
$(document).on("click", ".docstring header", function () { $(document).on("click", ".docstring header", function () {
let articleToggleTitle = "Expand docstring"; let articleToggleTitle = "Expand docstring";
debounce(() => {
if ($(this).siblings("section").is(":visible")) { if ($(this).siblings("section").is(":visible")) {
$(this) $(this)
.find(".docstring-article-toggle-button") .find(".docstring-article-toggle-button")
@ -99,11 +101,13 @@ $(document).on("click", ".docstring header", function () {
.prop("title", articleToggleTitle); .prop("title", articleToggleTitle);
$(this).siblings("section").slideToggle(); $(this).siblings("section").slideToggle();
}); });
});
$(document).on("click", ".docs-article-toggle-button", function () { $(document).on("click", ".docs-article-toggle-button", function () {
let articleToggleTitle = "Expand docstring"; let articleToggleTitle = "Expand docstring";
let navArticleToggleTitle = "Expand all docstrings"; let navArticleToggleTitle = "Expand all docstrings";
debounce(() => {
if (isExpanded) { if (isExpanded) {
$(this).removeClass("fa-chevron-up").addClass("fa-chevron-down"); $(this).removeClass("fa-chevron-up").addClass("fa-chevron-down");
$(".docstring-article-toggle-button") $(".docstring-article-toggle-button")
@ -129,6 +133,17 @@ $(document).on("click", ".docs-article-toggle-button", function () {
$(this).prop("title", navArticleToggleTitle); $(this).prop("title", navArticleToggleTitle);
$(".docstring-article-toggle-button").prop("title", articleToggleTitle); $(".docstring-article-toggle-button").prop("title", articleToggleTitle);
}); });
});
function debounce(callback, timeout = 300) {
if (Date.now() - timer > timeout) {
callback();
}
clearTimeout(timer);
timer = Date.now();
}
}) })
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////

File diff suppressed because one or more lines are too long

View File

@ -6,4 +6,4 @@
Website: https://highlightjs.org/ Website: https://highlightjs.org/
License: see project LICENSE License: see project LICENSE
Touched: 2021 Touched: 2021
*/pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#F3F3F3;color:#444}.hljs-comment{color:#697070}.hljs-tag,.hljs-punctuation{color:#444a}.hljs-tag .hljs-name,.hljs-tag .hljs-attr{color:#444}.hljs-keyword,.hljs-attribute,.hljs-selector-tag,.hljs-meta .hljs-keyword,.hljs-doctag,.hljs-name{font-weight:bold}.hljs-type,.hljs-string,.hljs-number,.hljs-selector-id,.hljs-selector-class,.hljs-quote,.hljs-template-tag,.hljs-deletion{color:#880000}.hljs-title,.hljs-section{color:#880000;font-weight:bold}.hljs-regexp,.hljs-symbol,.hljs-variable,.hljs-template-variable,.hljs-link,.hljs-selector-attr,.hljs-operator,.hljs-selector-pseudo{color:#ab5656}.hljs-literal{color:#695}.hljs-built_in,.hljs-bullet,.hljs-code,.hljs-addition{color:#397300}.hljs-meta{color:#1f7199}.hljs-meta .hljs-string{color:#38a}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold} */pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#F3F3F3;color:#444}.hljs-comment{color:#697070}.hljs-tag,.hljs-punctuation{color:#444a}.hljs-tag .hljs-name,.hljs-tag .hljs-attr{color:#444}.hljs-keyword,.hljs-attribute,.hljs-selector-tag,.hljs-meta .hljs-keyword,.hljs-doctag,.hljs-name{font-weight:bold}.hljs-type,.hljs-string,.hljs-number,.hljs-selector-id,.hljs-selector-class,.hljs-quote,.hljs-template-tag,.hljs-deletion{color:#880000}.hljs-title,.hljs-section{color:#880000;font-weight:bold}.hljs-regexp,.hljs-symbol,.hljs-variable,.hljs-template-variable,.hljs-link,.hljs-selector-attr,.hljs-operator,.hljs-selector-pseudo{color:#ab5656}.hljs-literal{color:#695}.hljs-built_in,.hljs-bullet,.hljs-code,.hljs-addition{color:#397300}.hljs-meta{color:#1f7199}.hljs-meta .hljs-string{color:#38a}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold}.gap-4{gap:1rem}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

1338
dev/pdes.ipynb Normal file

File diff suppressed because one or more lines are too long

17
dev/pdes/index.html Normal file

File diff suppressed because one or more lines are too long

8974
dev/pdes_src/index.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({

File diff suppressed because one or more lines are too long

View File

@ -7333,7 +7333,7 @@ a.anchor-link {
if (!diagrams.length) { if (!diagrams.length) {
return; return;
} }
const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.3.1/mermaid.esm.min.mjs")).default; const mermaid = (await import("https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.5.0/mermaid.esm.min.mjs")).default;
const parser = new DOMParser(); const parser = new DOMParser();
mermaid.initialize({ mermaid.initialize({