Skip to content

Commit

Permalink
authoer updates on readme
Browse files Browse the repository at this point in the history
  • Loading branch information
fawda123 committed Jan 11, 2018
1 parent aa449e4 commit f18603e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 26 deletions.
2 changes: 1 addition & 1 deletion README.Rmd
Expand Up @@ -8,7 +8,7 @@ output:

## ASCI

#### *Marcus W. Beck, marcusb@sccwrp.org, Susanna Theroux, susannat@sccwrp.org, John Van Sickle, VanSickle.John@epa.gov*
#### *Marcus W. Beck (maintainer), marcusb@sccwrp.org, Susanna Theroux, susannat@sccwrp.org*

[![Travis-CI Build Status](https://travis-ci.org/SCCWRP/ASCI.svg?branch=master)](https://travis-ci.org/SCCWRP/ASCI)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/SCCWRP/ASCI?branch=master&svg=true)](https://ci.appveyor.com/project/SCCWRP/ASCI)
Expand Down
18 changes: 8 additions & 10 deletions README.html
Expand Up @@ -20,8 +20,8 @@
<script src="README_files/bootstrap-3.3.5/shim/html5shiv.min.js"></script>
<script src="README_files/bootstrap-3.3.5/shim/respond.min.js"></script>
<script src="README_files/navigation-1.1/tabsets.js"></script>
<link href="README_files/highlightjs-9.12.0/default.css" rel="stylesheet" />
<script src="README_files/highlightjs-9.12.0/highlight.js"></script>
<link href="README_files/highlightjs-1.1/default.css" rel="stylesheet" />
<script src="README_files/highlightjs-1.1/highlight.js"></script>

<style type="text/css">code{white-space: pre;}</style>
<style type="text/css">
Expand All @@ -30,12 +30,10 @@
}
</style>
<script type="text/javascript">
if (window.hljs) {
hljs.configure({languages: []});
hljs.initHighlightingOnLoad();
if (document.readyState && document.readyState === "complete") {
window.setTimeout(function() { hljs.initHighlighting(); }, 0);
}
if (window.hljs && document.readyState && document.readyState === "complete") {
window.setTimeout(function() {
hljs.initHighlighting();
}, 0);
}
</script>

Expand Down Expand Up @@ -123,8 +121,8 @@

<div id="asci" class="section level2">
<h2>ASCI</h2>
<div id="marcus-w.-beck-marcusbsccwrp.org-susanna-theroux-susannatsccwrp.org-john-van-sickle-vansickle.johnepa.gov" class="section level4">
<h4><em>Marcus W. Beck, <a href="mailto:marcusb@sccwrp.org">marcusb@sccwrp.org</a>, Susanna Theroux, <a href="mailto:susannat@sccwrp.org">susannat@sccwrp.org</a>, John Van Sickle, <a href="mailto:VanSickle.John@epa.gov">VanSickle.John@epa.gov</a></em></h4>
<div id="marcus-w.-beck-maintainer-marcusbsccwrp.org-susanna-theroux-susannatsccwrp.org" class="section level4">
<h4><em>Marcus W. Beck (maintainer), <a href="mailto:marcusb@sccwrp.org">marcusb@sccwrp.org</a>, Susanna Theroux, <a href="mailto:susannat@sccwrp.org">susannat@sccwrp.org</a></em></h4>
<p><a href="https://travis-ci.org/SCCWRP/ASCI"><img src="https://travis-ci.org/SCCWRP/ASCI.svg?branch=master" alt="Travis-CI Build Status" /></a> <a href="https://ci.appveyor.com/project/SCCWRP/ASCI"><img src="https://ci.appveyor.com/api/projects/status/github/SCCWRP/ASCI?branch=master&amp;svg=true" alt="AppVeyor Build Status" /></a> <a href="https://zenodo.org/badge/latestdoi/106055957"><img src="https://zenodo.org/badge/106055957.svg" alt="DOI" /></a></p>
<p>R package materials to calculate the Algal Stream Condition Index (ASCI) based on O/E and pMMI scores using diatom, soft-bodied algae, or a hybrid appproach.</p>
</div>
Expand Down
9 changes: 1 addition & 8 deletions README.md
@@ -1,14 +1,7 @@
---
output:
html_document:
keep_md: yes
toc: no
self_contained: no
---

## ASCI

#### *Marcus W. Beck, marcusb@sccwrp.org, Susanna Theroux, susannat@sccwrp.org, John Van Sickle, VanSickle.John@epa.gov*
#### *Marcus W. Beck (maintainer), marcusb@sccwrp.org, Susanna Theroux, susannat@sccwrp.org*

[![Travis-CI Build Status](https://travis-ci.org/SCCWRP/ASCI.svg?branch=master)](https://travis-ci.org/SCCWRP/ASCI)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/SCCWRP/ASCI?branch=master&svg=true)](https://ci.appveyor.com/project/SCCWRP/ASCI)
Expand Down
2 changes: 2 additions & 0 deletions README_files/navigation-1.1/FileSaver.min.js

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

11 changes: 4 additions & 7 deletions README_files/navigation-1.1/sourceembed.js
@@ -1,12 +1,9 @@


window.initializeSourceEmbed = function(filename) {
$("#rmd-download-source").click(function() {
var src = $("#rmd-source-code").html();
var a = document.createElement('a');
a.href = "data:text/x-r-markdown;base64," + src;
a.download = filename;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
var src = window.atob($("#rmd-source-code").html());
var blob = new Blob([src], {type: "text/x-r-markdown"});
saveAs(blob, filename);
});
};

0 comments on commit f18603e

Please sign in to comment.