Skip to content

Commit 5fef653

Browse files
committed
remove Kelsey Badget as active team member (per her request)
1 parent 7f9b8e4 commit 5fef653

File tree

84 files changed

+4495
-3418
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+4495
-3418
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.quarto/

docs/EcologyLesson/Intro/index.html

Lines changed: 28 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.4.554">
5+
<meta name="generator" content="quarto-1.6.40">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

99

10-
<title>STEMcoding - Introduction</title>
10+
<title>Introduction – STEMcoding</title>
1111
<style>
1212
code{white-space: pre-wrap;}
1313
span.smallcaps{font-variant: small-caps;}
@@ -35,10 +35,10 @@
3535
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
3636
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
3737
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
38-
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" id="quarto-text-highlighting-styles">
38+
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-549806ee2085284f45b00abea8c6df48.css" rel="stylesheet" id="quarto-text-highlighting-styles">
3939
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
4040
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
41-
<link href="../../site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" id="quarto-bootstrap" data-mode="light">
41+
<link href="../../site_libs/bootstrap/bootstrap-3ed3a85e8781f68cd9162943f395acec.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
4242
<script id="quarto-search-options" type="application/json">{
4343
"location": "navbar",
4444
"copy-button": false,
@@ -83,7 +83,7 @@
8383
</a>
8484
</div>
8585
<div id="quarto-search" class="" title="Search"></div>
86-
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
86+
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
8787
<span class="navbar-toggler-icon"></span>
8888
</button>
8989
<div class="collapse navbar-collapse" id="navbarCollapse">
@@ -106,7 +106,7 @@
106106
</li>
107107
</ul>
108108
</div> <!-- /navcollapse -->
109-
<div class="quarto-navbar-tools">
109+
<div class="quarto-navbar-tools">
110110
<a href="https://www.youtube.com/@STEMcoding" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-youtube"></i></a>
111111
<a href="https://discord.gg/bsWgqcqwCE" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-discord"></i></a>
112112
</div>
@@ -275,18 +275,7 @@ <h2 class="anchored" data-anchor-id="key-points">Key Points</h2>
275275
}
276276
return false;
277277
}
278-
const clipboard = new window.ClipboardJS('.code-copy-button', {
279-
text: function(trigger) {
280-
const codeEl = trigger.previousElementSibling.cloneNode(true);
281-
for (const childEl of codeEl.children) {
282-
if (isCodeAnnotation(childEl)) {
283-
childEl.remove();
284-
}
285-
}
286-
return codeEl.innerText;
287-
}
288-
});
289-
clipboard.on('success', function(e) {
278+
const onCopySuccess = function(e) {
290279
// button target
291280
const button = e.trigger;
292281
// don't keep focus
@@ -318,15 +307,35 @@ <h2 class="anchored" data-anchor-id="key-points">Key Points</h2>
318307
}, 1000);
319308
// clear code selection
320309
e.clearSelection();
310+
}
311+
const getTextToCopy = function(trigger) {
312+
const codeEl = trigger.previousElementSibling.cloneNode(true);
313+
for (const childEl of codeEl.children) {
314+
if (isCodeAnnotation(childEl)) {
315+
childEl.remove();
316+
}
317+
}
318+
return codeEl.innerText;
319+
}
320+
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
321+
text: getTextToCopy
321322
});
323+
clipboard.on('success', onCopySuccess);
324+
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
325+
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
326+
text: getTextToCopy,
327+
container: window.document.getElementById('quarto-embedded-source-code-modal')
328+
});
329+
clipboardModal.on('success', onCopySuccess);
330+
}
322331
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
323332
var mailtoRegex = new RegExp(/^mailto:/);
324333
var filterRegex = new RegExp('/' + window.location.host + '/');
325334
var isInternal = (href) => {
326335
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
327336
}
328337
// Inspect non-navigation links and adorn them if external
329-
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
338+
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
330339
for (var i=0; i<links.length; i++) {
331340
const link = links[i];
332341
if (!isInternal(link.href)) {
@@ -423,7 +432,6 @@ <h2 class="anchored" data-anchor-id="key-points">Key Points</h2>
423432
if (window.Quarto?.typesetMath) {
424433
window.Quarto.typesetMath(note);
425434
}
426-
// TODO in 1.5, we should make sure this works without a callout special case
427435
if (note.classList.contains("callout")) {
428436
return note.outerHTML;
429437
} else {

docs/EcologyLesson/Intro/index.qmd

Lines changed: 0 additions & 89 deletions
This file was deleted.

docs/EcologyLesson/datesasdata/index.html

Lines changed: 28 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.4.554">
5+
<meta name="generator" content="quarto-1.6.40">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

99

10-
<title>STEMcoding - Dates as data</title>
10+
<title>Dates as data – STEMcoding</title>
1111
<style>
1212
code{white-space: pre-wrap;}
1313
span.smallcaps{font-variant: small-caps;}
@@ -35,10 +35,10 @@
3535
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
3636
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
3737
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
38-
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" id="quarto-text-highlighting-styles">
38+
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-549806ee2085284f45b00abea8c6df48.css" rel="stylesheet" id="quarto-text-highlighting-styles">
3939
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
4040
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
41-
<link href="../../site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" id="quarto-bootstrap" data-mode="light">
41+
<link href="../../site_libs/bootstrap/bootstrap-3ed3a85e8781f68cd9162943f395acec.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
4242
<script id="quarto-search-options" type="application/json">{
4343
"location": "navbar",
4444
"copy-button": false,
@@ -83,7 +83,7 @@
8383
</a>
8484
</div>
8585
<div id="quarto-search" class="" title="Search"></div>
86-
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
86+
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
8787
<span class="navbar-toggler-icon"></span>
8888
</button>
8989
<div class="collapse navbar-collapse" id="navbarCollapse">
@@ -106,7 +106,7 @@
106106
</li>
107107
</ul>
108108
</div> <!-- /navcollapse -->
109-
<div class="quarto-navbar-tools">
109+
<div class="quarto-navbar-tools">
110110
<a href="https://www.youtube.com/@STEMcoding" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-youtube"></i></a>
111111
<a href="https://discord.gg/bsWgqcqwCE" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-discord"></i></a>
112112
</div>
@@ -335,18 +335,7 @@ <h2 class="anchored" data-anchor-id="key-points">Key Points</h2>
335335
}
336336
return false;
337337
}
338-
const clipboard = new window.ClipboardJS('.code-copy-button', {
339-
text: function(trigger) {
340-
const codeEl = trigger.previousElementSibling.cloneNode(true);
341-
for (const childEl of codeEl.children) {
342-
if (isCodeAnnotation(childEl)) {
343-
childEl.remove();
344-
}
345-
}
346-
return codeEl.innerText;
347-
}
348-
});
349-
clipboard.on('success', function(e) {
338+
const onCopySuccess = function(e) {
350339
// button target
351340
const button = e.trigger;
352341
// don't keep focus
@@ -378,15 +367,35 @@ <h2 class="anchored" data-anchor-id="key-points">Key Points</h2>
378367
}, 1000);
379368
// clear code selection
380369
e.clearSelection();
370+
}
371+
const getTextToCopy = function(trigger) {
372+
const codeEl = trigger.previousElementSibling.cloneNode(true);
373+
for (const childEl of codeEl.children) {
374+
if (isCodeAnnotation(childEl)) {
375+
childEl.remove();
376+
}
377+
}
378+
return codeEl.innerText;
379+
}
380+
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
381+
text: getTextToCopy
381382
});
383+
clipboard.on('success', onCopySuccess);
384+
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
385+
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
386+
text: getTextToCopy,
387+
container: window.document.getElementById('quarto-embedded-source-code-modal')
388+
});
389+
clipboardModal.on('success', onCopySuccess);
390+
}
382391
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
383392
var mailtoRegex = new RegExp(/^mailto:/);
384393
var filterRegex = new RegExp('/' + window.location.host + '/');
385394
var isInternal = (href) => {
386395
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
387396
}
388397
// Inspect non-navigation links and adorn them if external
389-
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
398+
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
390399
for (var i=0; i<links.length; i++) {
391400
const link = links[i];
392401
if (!isInternal(link.href)) {
@@ -483,7 +492,6 @@ <h2 class="anchored" data-anchor-id="key-points">Key Points</h2>
483492
if (window.Quarto?.typesetMath) {
484493
window.Quarto.typesetMath(note);
485494
}
486-
// TODO in 1.5, we should make sure this works without a callout special case
487495
if (note.classList.contains("callout")) {
488496
return note.outerHTML;
489497
} else {

0 commit comments

Comments
 (0)