Skip to content

Commit

Permalink
Built site for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Quarto GHA Workflow Runner committed Mar 16, 2024
1 parent f1a0c50 commit 67eeab8
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 1,929 deletions.
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4d1292b5
9b6ab38f
26 changes: 24 additions & 2 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<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.550">
<meta name="generator" content="quarto-1.4.551">

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

Expand Down Expand Up @@ -216,6 +216,24 @@ <h1 class="title">About</h1>
// clear code selection
e.clearSelection();
});
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp("https:\/\/trekonom\.github\.io\/intro-tidy\/");
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)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
Expand Down Expand Up @@ -250,7 +268,11 @@ <h1 class="title">About</h1>
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
return note.innerHTML;
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
Expand Down
1,918 changes: 0 additions & 1,918 deletions index 2.html

This file was deleted.

28 changes: 25 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link href="site_libs/quarto-html/light-border.css" rel="stylesheet">
<link href="site_libs/quarto-html/quarto-html.min.css" rel="stylesheet" data-mode="light">
<link href="site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" id="quarto-text-highlighting-styles"><meta charset="utf-8">
<meta name="generator" content="quarto-1.4.550">
<meta name="generator" content="quarto-1.4.551">

<title>Intro-tidy</title>
<meta name="apple-mobile-web-app-capable" content="yes">
Expand Down Expand Up @@ -485,7 +485,7 @@
};

// Store cell data
globalThis.qwebrCellDetails = [{"id":1,"options":{"dpi":72,"fig-width":7,"comment":"","fig-cap":"","autorun":"false","read-only":"false","context":"interactive","results":"markup","output":"true","classes":"","out-width":"700px","label":"unnamed-chunk-1","warning":"true","message":"true","fig-height":5,"out-height":""},"code":"ggplot()"}];
globalThis.qwebrCellDetails = [{"id":1,"code":"ggplot()","options":{"comment":"","results":"markup","fig-width":7,"output":"true","label":"unnamed-chunk-1","fig-height":5,"autorun":"false","read-only":"false","fig-cap":"","dpi":72,"out-width":"700px","warning":"true","message":"true","context":"interactive","classes":"","out-height":""}}];

</script>
<script type="module">
Expand Down Expand Up @@ -1723,6 +1723,24 @@ <h1 class="title">Intro-tidy</h1>
// clear code selection
e.clearSelection();
});
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp("https:\/\/trekonom\.github\.io\/intro-tidy\/");
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)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
Expand Down Expand Up @@ -1759,7 +1777,11 @@ <h1 class="title">Intro-tidy</h1>
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
return note.innerHTML;
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const findCites = (el) => {
Expand Down
2 changes: 1 addition & 1 deletion site_libs/bootstrap/bootstrap.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions site_libs/quarto-nav/quarto-nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ window.document.addEventListener("DOMContentLoaded", function () {
const links = window.document.querySelectorAll("a");
for (let i = 0; i < links.length; i++) {
if (links[i].href) {
links[i].dataset.originalHref = links[i].href;
links[i].href = links[i].href.replace(/\/index\.html/, "/");
}
}
Expand Down
8 changes: 4 additions & 4 deletions sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://trekonom.github.io/intro-tidy/about.html</loc>
<lastmod>2024-03-16T17:30:59.988Z</lastmod>
<loc>https://trekonom.github.io/intro-tidy/index.html</loc>
<lastmod>2024-03-16T17:44:08.019Z</lastmod>
</url>
<url>
<loc>https://trekonom.github.io/intro-tidy/index.html</loc>
<lastmod>2024-03-16T17:31:00.012Z</lastmod>
<loc>https://trekonom.github.io/intro-tidy/about.html</loc>
<lastmod>2024-03-16T17:44:08.019Z</lastmod>
</url>
</urlset>

0 comments on commit 67eeab8

Please sign in to comment.