|
2 | 2 | <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head> |
3 | 3 |
|
4 | 4 | <meta charset="utf-8"> |
5 | | -<meta name="generator" content="quarto-1.7.32"> |
| 5 | +<meta name="generator" content="quarto-1.8.26"> |
6 | 6 |
|
7 | 7 | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> |
8 | 8 |
|
|
34 | 34 | <script src="site_libs/quarto-listing/quarto-listing.js"></script> |
35 | 35 | <script src="site_libs/quarto-html/quarto.js" type="module"></script> |
36 | 36 | <script src="site_libs/quarto-html/tabsets/tabsets.js" type="module"></script> |
| 37 | +<script src="site_libs/quarto-html/axe/axe-check.js" type="module"></script> |
37 | 38 | <script src="site_libs/quarto-html/popper.min.js"></script> |
38 | 39 | <script src="site_libs/quarto-html/tippy.umd.min.js"></script> |
39 | 40 | <script src="site_libs/quarto-html/anchor.min.js"></script> |
40 | 41 | <link href="site_libs/quarto-html/tippy.css" rel="stylesheet"> |
41 | | -<link href="site_libs/quarto-html/quarto-syntax-highlighting-dark-2fef5ea3f8957b3e4ecc936fc74692ca.css" rel="stylesheet" id="quarto-text-highlighting-styles"> |
| 42 | +<link href="site_libs/quarto-html/quarto-syntax-highlighting-dark-b758ccaa5987ceb1b75504551e579abf.css" rel="stylesheet" id="quarto-text-highlighting-styles"> |
42 | 43 | <script src="site_libs/bootstrap/bootstrap.min.js"></script> |
43 | 44 | <link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet"> |
44 | | -<link href="site_libs/bootstrap/bootstrap-c09f7992e7ad36c4a4c784d127ab2153.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="dark"> |
| 45 | +<link href="site_libs/bootstrap/bootstrap-2ec1ecde4794cf0ca2676fdbadd3167b.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="dark"> |
45 | 46 | <script src="site_libs/quarto-contrib/iconify-2.1.0/iconify-icon.min.js"></script> |
46 | 47 | <script id="quarto-search-options" type="application/json">{ |
47 | 48 | "location": "navbar", |
|
114 | 115 | var macros = []; |
115 | 116 | for (var i = 0; i < mathElements.length; i++) { |
116 | 117 | var texText = mathElements[i].firstChild; |
117 | | - if (mathElements[i].tagName == "SPAN") { |
| 118 | + if (mathElements[i].tagName == "SPAN" && texText && texText.data) { |
118 | 119 | window.katex.render(texText.data, mathElements[i], { |
119 | 120 | displayMode: mathElements[i].classList.contains('display'), |
120 | 121 | throwOnError: false, |
|
153 | 154 | <li class="nav-item"> |
154 | 155 | <a class="nav-link" href="./about.html"> |
155 | 156 | <span class="menu-text">About</span></a> |
| 157 | + </li> |
| 158 | + <li class="nav-item"> |
| 159 | + <a class="nav-link" href="https://coveredinbees.org"> |
| 160 | +<span class="menu-text">coveredinbees</span></a> |
| 161 | + </li> |
| 162 | + <li class="nav-item"> |
| 163 | + <a class="nav-link" href="https://exobrain.coveredinbees.org"> |
| 164 | +<span class="menu-text">exobrain</span></a> |
156 | 165 | </li> |
157 | 166 | <li class="nav-item compact"> |
158 | 167 | <a class="nav-link" href="https://github.com/DanOlner"> <i class="bi bi-github" role="img"> |
@@ -602,13 +611,14 @@ <h3 class="no-anchor listing-title"> |
602 | 611 | e.clearSelection(); |
603 | 612 | } |
604 | 613 | const getTextToCopy = function(trigger) { |
605 | | - const codeEl = trigger.previousElementSibling.cloneNode(true); |
606 | | - for (const childEl of codeEl.children) { |
607 | | - if (isCodeAnnotation(childEl)) { |
608 | | - childEl.remove(); |
609 | | - } |
| 614 | + const outerScaffold = trigger.parentElement.cloneNode(true); |
| 615 | + const codeEl = outerScaffold.querySelector('code'); |
| 616 | + for (const childEl of codeEl.children) { |
| 617 | + if (isCodeAnnotation(childEl)) { |
| 618 | + childEl.remove(); |
610 | 619 | } |
611 | | - return codeEl.innerText; |
| 620 | + } |
| 621 | + return codeEl.innerText; |
612 | 622 | } |
613 | 623 | const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', { |
614 | 624 | text: getTextToCopy |
|
0 commit comments