Skip to content

Commit

Permalink
Deploying to gh-pages from @ 9b72518 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkorb committed Jun 21, 2024
1 parent 47d3d76 commit 2d1db91
Show file tree
Hide file tree
Showing 55 changed files with 4,957 additions and 45 deletions.
6 changes: 5 additions & 1 deletion 404.html

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

6 changes: 5 additions & 1 deletion LICENSE-text.html

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

6 changes: 5 additions & 1 deletion articles/disp.html

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

8 changes: 7 additions & 1 deletion articles/index.html

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

269 changes: 269 additions & 0 deletions articles/qc.html

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions articles/qc_files/accessible-code-block-0.0.1/empty-anchor.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Hide empty <a> tag within highlighted CodeBlock for screen reader accessibility (see https://github.com/jgm/pandoc/issues/6352#issuecomment-626106786) -->
// v0.0.1
// Written by JooYoung Seo ([email protected]) and Atsushi Yasumoto on June 1st, 2020.

document.addEventListener('DOMContentLoaded', function() {
const codeList = document.getElementsByClassName("sourceCode");
for (var i = 0; i < codeList.length; i++) {
var linkList = codeList[i].getElementsByTagName('a');
for (var j = 0; j < linkList.length; j++) {
if (linkList[j].innerHTML === "") {
linkList[j].setAttribute('aria-hidden', 'true');
}
}
}
});
1 change: 1 addition & 0 deletions articles/qc_files/crosstalk-1.2.1/css/crosstalk.min.css

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

Loading

0 comments on commit 2d1db91

Please sign in to comment.