Skip to content

Commit

Permalink
u1 edits
Browse files Browse the repository at this point in the history
  • Loading branch information
chloecwh committed Dec 13, 2024
1 parent 6744ff2 commit cbca738
Show file tree
Hide file tree
Showing 17 changed files with 215 additions and 446 deletions.
14 changes: 9 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"**/assessment.qmd": false,
"*.qmd": false,
"assessment.qmd": false,
"**/*.qmd": false
"**/*.qmd": false,
"**/yml-assets": false,
"yml-assets": false
},
"explorerExclude.backup": {
"**/.git": false,
Expand All @@ -22,9 +24,11 @@
"**/Thumbs.db": false,
"**/ .html": false,
"**/ .md": false,
"**/assessment.qmd": true,
"*.qmd": true,
"assessment.qmd": true,
"**/*.qmd": true
"**/assessment.qmd": false,
"*.qmd": false,
"assessment.qmd": false,
"**/*.qmd": false,
"**/yml-assets": true,
"yml-assets": true
}
}
131 changes: 0 additions & 131 deletions custom.lua

This file was deleted.

40 changes: 0 additions & 40 deletions custom.scss

This file was deleted.

Binary file modified docs/LDRS-101.docx
Binary file not shown.
11 changes: 4 additions & 7 deletions docs/index.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.5.56">
<meta name="generator" content="quarto-1.6.37">

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

Expand Down Expand Up @@ -37,10 +37,10 @@
<script src="site_libs/quarto-html/tippy.umd.min.js"></script>
<script src="site_libs/quarto-html/anchor.min.js"></script>
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet">
<link href="site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<link href="site_libs/quarto-html/quarto-syntax-highlighting-29e2c20b02301cfff04dc8050bf30c7e.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-7580570a2e354cd56757c689413fca0c.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script id="quarto-search-options" type="application/json">{
"location": "sidebar",
"copy-button": false,
Expand Down Expand Up @@ -107,7 +107,7 @@ <h1 class="title column-body">LDRS 101</h1>
</div>
<div>
<div class="quarto-title-meta-heading"><p>Last Modified</p></div>
<div class="quarto-title-meta-contents"><p>Nov 26, 2024</p></div>
<div class="quarto-title-meta-contents"><p>Dec 13, 2024</p></div>
</div>
</div>
</div>
Expand Down Expand Up @@ -341,8 +341,6 @@ <h2 class="unnumbered anchored" data-anchor-id="course-activities">Course Activi
});
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')
Expand Down Expand Up @@ -453,7 +451,6 @@ <h2 class="unnumbered anchored" data-anchor-id="course-activities">Course Activi
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(note);
}
// TODO in 1.5, we should make sure this works without a callout special case
if (note.classList.contains("callout")) {
return note.outerHTML;
} else {
Expand Down
8 changes: 4 additions & 4 deletions docs/search.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

12 changes: 0 additions & 12 deletions docs/site_libs/bootstrap/bootstrap.min.css

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion docs/site_libs/quarto-html/quarto.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,10 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
}

async function findAndActivateCategories() {
const currentPagePath = offsetAbsoluteUrl(window.location.href);
// Categories search with listing only use path without query
const currentPagePath = offsetAbsoluteUrl(
window.location.origin + window.location.pathname
);
const response = await fetch(offsetRelativeUrl("listings.json"));
if (response.status == 200) {
return response.json().then(function (listingPaths) {
Expand Down
Loading

0 comments on commit cbca738

Please sign in to comment.