Skip to content

Commit b7fdcfc

Browse files
committed
Add GitHub icon/link to pkgdown site header
1 parent 54775d7 commit b7fdcfc

File tree

104 files changed

+1015
-347
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+1015
-347
lines changed

_pkgdown.yml

+5
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,8 @@ reference:
5353
- plot,gatingTemplate-method
5454
- plot,fcTree,character-method
5555
- plot,fcFilterList,ANY-method
56+
navbar:
57+
title: openCyto
58+
right:
59+
- icon: fas fa fa-github fa-lg
60+
href: https://github.com/RGLab/openCyto

docs/404.html

+8-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/HowToAutoGating.html

+25-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Hide empty <a> tag within highlighted CodeBlock for screen reader accessibility (see https://github.com/jgm/pandoc/issues/6352#issuecomment-626106786) -->
2+
// v0.0.1
3+
// Written by JooYoung Seo ([email protected]) and Atsushi Yasumoto on June 1st, 2020.
4+
5+
document.addEventListener('DOMContentLoaded', function() {
6+
const codeList = document.getElementsByClassName("sourceCode");
7+
for (var i = 0; i < codeList.length; i++) {
8+
var linkList = codeList[i].getElementsByTagName('a');
9+
for (var j = 0; j < linkList.length; j++) {
10+
if (linkList[j].innerHTML === "") {
11+
linkList[j].setAttribute('aria-hidden', 'true');
12+
}
13+
}
14+
}
15+
});
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Pandoc 2.9 adds attributes on both header and div. We remove the former (to
2+
// be compatible with the behavior of Pandoc < 2.8).
3+
document.addEventListener('DOMContentLoaded', function(e) {
4+
var hs = document.querySelectorAll("div.section[class*='level'] > :first-child");
5+
var i, h, a;
6+
for (i = 0; i < hs.length; i++) {
7+
h = hs[i];
8+
if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6
9+
a = h.attributes;
10+
while (a.length > 0) h.removeAttribute(a[0].name);
11+
}
12+
});

docs/articles/HowToWriteCSVTemplate.html

+11-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Hide empty <a> tag within highlighted CodeBlock for screen reader accessibility (see https://github.com/jgm/pandoc/issues/6352#issuecomment-626106786) -->
2+
// v0.0.1
3+
// Written by JooYoung Seo ([email protected]) and Atsushi Yasumoto on June 1st, 2020.
4+
5+
document.addEventListener('DOMContentLoaded', function() {
6+
const codeList = document.getElementsByClassName("sourceCode");
7+
for (var i = 0; i < codeList.length; i++) {
8+
var linkList = codeList[i].getElementsByTagName('a');
9+
for (var j = 0; j < linkList.length; j++) {
10+
if (linkList[j].innerHTML === "") {
11+
linkList[j].setAttribute('aria-hidden', 'true');
12+
}
13+
}
14+
}
15+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Pandoc 2.9 adds attributes on both header and div. We remove the former (to
2+
// be compatible with the behavior of Pandoc < 2.8).
3+
document.addEventListener('DOMContentLoaded', function(e) {
4+
var hs = document.querySelectorAll("div.section[class*='level'] > :first-child");
5+
var i, h, a;
6+
for (i = 0; i < hs.length; i++) {
7+
h = hs[i];
8+
if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6
9+
a = h.attributes;
10+
while (a.length > 0) h.removeAttribute(a[0].name);
11+
}
12+
});

docs/articles/index.html

+8-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)