-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Quarto GHA Workflow Runner
committed
Jul 10, 2024
1 parent
3d9c46a
commit 264334b
Showing
29 changed files
with
749 additions
and
493 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
906fb859 | ||
5ea73751 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,12 @@ | |
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head> | ||
|
||
<meta charset="utf-8"> | ||
<meta name="generator" content="quarto-1.4.555"> | ||
<meta name="generator" content="quarto-1.5.54"> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> | ||
|
||
|
||
<title>GlobaLID - About</title> | ||
<title>About – GlobaLID</title> | ||
<style> | ||
code{white-space: pre-wrap;} | ||
span.smallcaps{font-variant: small-caps;} | ||
|
@@ -89,7 +89,7 @@ | |
</a> | ||
</div> | ||
<div id="quarto-search" class="" title="Search"></div> | ||
<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(); }"> | ||
<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(); }"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarCollapse"> | ||
|
@@ -107,7 +107,7 @@ | |
<span class="menu-text">Team</span></a> | ||
</li> | ||
<li class="nav-item dropdown "> | ||
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-workshops" role="button" data-bs-toggle="dropdown" aria-expanded="false"> | ||
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-workshops" role="link" data-bs-toggle="dropdown" aria-expanded="false"> | ||
<span class="menu-text">Workshops</span> | ||
</a> | ||
<ul class="dropdown-menu" aria-labelledby="nav-menu-workshops"> | ||
|
@@ -143,7 +143,7 @@ | |
</li> | ||
</ul> | ||
</div> <!-- /navcollapse --> | ||
<div class="quarto-navbar-tools tools-wide"> | ||
<div class="quarto-navbar-tools tools-wide"> | ||
<a href="mailto:[email protected]?subject=GlobaLID" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-envelope-fill"></i></a> | ||
<a href="https://github.com/archmetalDBM" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-github"></i></a> | ||
<a href="./blog.xml" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-rss"></i></a> | ||
|
@@ -167,7 +167,7 @@ <h2 id="toc-title">On this page</h2> | |
</nav> | ||
<div id="quarto-sidebar-glass" class="quarto-sidebar-collapse-item" data-bs-toggle="collapse" data-bs-target=".quarto-sidebar-collapse-item"></div> | ||
<!-- margin-sidebar --> | ||
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar"> | ||
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar zindex-bottom"> | ||
</div> | ||
<!-- main --> | ||
<main class="content" id="quarto-document-content"> | ||
|
@@ -392,18 +392,7 @@ <h2 class="anchored" data-anchor-id="privacy">Privacy</h2> | |
} | ||
return false; | ||
} | ||
const clipboard = new window.ClipboardJS('.code-copy-button', { | ||
text: function(trigger) { | ||
const codeEl = trigger.previousElementSibling.cloneNode(true); | ||
for (const childEl of codeEl.children) { | ||
if (isCodeAnnotation(childEl)) { | ||
childEl.remove(); | ||
} | ||
} | ||
return codeEl.innerText; | ||
} | ||
}); | ||
clipboard.on('success', function(e) { | ||
const onCopySuccess = function(e) { | ||
// button target | ||
const button = e.trigger; | ||
// don't keep focus | ||
|
@@ -435,15 +424,37 @@ <h2 class="anchored" data-anchor-id="privacy">Privacy</h2> | |
}, 1000); | ||
// clear code selection | ||
e.clearSelection(); | ||
} | ||
const getTextToCopy = function(trigger) { | ||
const codeEl = trigger.previousElementSibling.cloneNode(true); | ||
for (const childEl of codeEl.children) { | ||
if (isCodeAnnotation(childEl)) { | ||
childEl.remove(); | ||
} | ||
} | ||
return codeEl.innerText; | ||
} | ||
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', { | ||
text: getTextToCopy | ||
}); | ||
clipboard.on('success', onCopySuccess); | ||
if (window.document.getElementById('quarto-embedded-source-code-modal')) { | ||
// For code content inside modals, clipBoardJS needs to be initialized with a container option | ||
// TODO: Check when it could be a function (https://github.com/zenorocha/clipboard.js/issues/860) | ||
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', { | ||
text: getTextToCopy, | ||
container: window.document.getElementById('quarto-embedded-source-code-modal') | ||
}); | ||
clipboardModal.on('success', onCopySuccess); | ||
} | ||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//); | ||
var mailtoRegex = new RegExp(/^mailto:/); | ||
var filterRegex = new RegExp("https:\/\/archmetaldbm\.github\.io\/globalid"); | ||
var isInternal = (href) => { | ||
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href); | ||
} | ||
// Inspect non-navigation links and adorn them if external | ||
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)'); | ||
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)'); | ||
for (var i=0; i<links.length; i++) { | ||
const link = links[i]; | ||
if (!isInternal(link.href)) { | ||
|
Oops, something went wrong.