Skip to content

Commit 62cd054

Browse files
author
Quarto GHA Workflow Runner
committed
Built site for gh-pages
1 parent cdc653b commit 62cd054

8 files changed

Lines changed: 39 additions & 20 deletions

File tree

.nojekyll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9c76decb
1+
dc74be01

about.html

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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.550">
5+
<meta name="generator" content="quarto-1.4.553">
66

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

@@ -366,7 +366,7 @@
366366
}
367367
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
368368
var mailtoRegex = new RegExp(/^mailto:/);
369-
var filterRegex = new RegExp("https:\/\/DevPsyLab\.github\.io\/QuartoWebsite\/");
369+
var filterRegex = new RegExp("https:\/\/DevPsyLab\.github\.io\/pythonDataAnalysisGuides\/");
370370
var isInternal = (href) => {
371371
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
372372
}
@@ -375,6 +375,11 @@
375375
for (var i=0; i<links.length; i++) {
376376
const link = links[i];
377377
if (!isInternal(link.href)) {
378+
// undo the damage that might have been done by quarto-nav.js in the case of
379+
// links that we want to consider external
380+
if (link.dataset.originalHref !== undefined) {
381+
link.href = link.dataset.originalHref;
382+
}
378383
// target, if specified
379384
link.setAttribute("target", "_blank");
380385
if (link.getAttribute("rel") === null) {
@@ -416,7 +421,11 @@
416421
try { href = new URL(href).hash; } catch {}
417422
const id = href.replace(/^#\/?/, "");
418423
const note = window.document.getElementById(id);
419-
return note.innerHTML;
424+
if (note) {
425+
return note.innerHTML;
426+
} else {
427+
return "";
428+
}
420429
});
421430
}
422431
const xrefs = window.document.querySelectorAll('a.quarto-xref');

index.html

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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.550">
5+
<meta name="generator" content="quarto-1.4.553">
66

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

@@ -367,7 +367,7 @@
367367
}
368368
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
369369
var mailtoRegex = new RegExp(/^mailto:/);
370-
var filterRegex = new RegExp("https:\/\/DevPsyLab\.github\.io\/QuartoWebsite\/");
370+
var filterRegex = new RegExp("https:\/\/DevPsyLab\.github\.io\/pythonDataAnalysisGuides\/");
371371
var isInternal = (href) => {
372372
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
373373
}
@@ -376,6 +376,11 @@
376376
for (var i=0; i<links.length; i++) {
377377
const link = links[i];
378378
if (!isInternal(link.href)) {
379+
// undo the damage that might have been done by quarto-nav.js in the case of
380+
// links that we want to consider external
381+
if (link.dataset.originalHref !== undefined) {
382+
link.href = link.dataset.originalHref;
383+
}
379384
// target, if specified
380385
link.setAttribute("target", "_blank");
381386
if (link.getAttribute("rel") === null) {
@@ -417,7 +422,11 @@
417422
try { href = new URL(href).hash; } catch {}
418423
const id = href.replace(/^#\/?/, "");
419424
const note = window.document.getElementById(id);
420-
return note.innerHTML;
425+
if (note) {
426+
return note.innerHTML;
427+
} else {
428+
return "";
429+
}
421430
});
422431
}
423432
const xrefs = window.document.querySelectorAll('a.quarto-xref');

robots.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Sitemap: https://DevPsyLab.github.io/QuartoWebsite/sitemap.xml
1+
Sitemap: https://DevPsyLab.github.io/pythonDataAnalysisGuides/sitemap.xml

search.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[
2-
{
3-
"objectID": "index.html",
4-
"href": "index.html",
5-
"title": "Website",
6-
"section": "",
7-
"text": "This is a Quarto website.\nTo learn more about Quarto websites visit https://quarto.org/docs/websites."
8-
},
92
{
103
"objectID": "about.html",
114
"href": "about.html",
125
"title": "About",
136
"section": "",
147
"text": "About this site"
8+
},
9+
{
10+
"objectID": "index.html",
11+
"href": "index.html",
12+
"title": "Website",
13+
"section": "",
14+
"text": "This is a Quarto website.\nTo learn more about Quarto websites visit https://quarto.org/docs/websites."
1515
}
1616
]

site_libs/bootstrap/bootstrap.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site_libs/quarto-nav/quarto-nav.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ window.document.addEventListener("DOMContentLoaded", function () {
237237
const links = window.document.querySelectorAll("a");
238238
for (let i = 0; i < links.length; i++) {
239239
if (links[i].href) {
240+
links[i].dataset.originalHref = links[i].href;
240241
links[i].href = links[i].href.replace(/\/index\.html/, "/");
241242
}
242243
}

sitemap.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
4-
<loc>https://DevPsyLab.github.io/QuartoWebsite/index.html</loc>
5-
<lastmod>2024-02-22T19:24:40.484Z</lastmod>
4+
<loc>https://DevPsyLab.github.io/pythonDataAnalysisGuides/about.html</loc>
5+
<lastmod>2024-04-14T16:20:51.886Z</lastmod>
66
</url>
77
<url>
8-
<loc>https://DevPsyLab.github.io/QuartoWebsite/about.html</loc>
9-
<lastmod>2024-02-22T19:24:40.472Z</lastmod>
8+
<loc>https://DevPsyLab.github.io/pythonDataAnalysisGuides/index.html</loc>
9+
<lastmod>2024-04-14T16:20:51.902Z</lastmod>
1010
</url>
1111
</urlset>

0 commit comments

Comments
 (0)