diff --git a/_posts/2022-02-14-machine-learning-directed-study-report-1/machine-learning-methods-for-orbital-debris-characterization.html b/_posts/2022-02-14-machine-learning-directed-study-report-1/machine-learning-methods-for-orbital-debris-characterization.html index 279d63f..6b7f852 100644 --- a/_posts/2022-02-14-machine-learning-directed-study-report-1/machine-learning-methods-for-orbital-debris-characterization.html +++ b/_posts/2022-02-14-machine-learning-directed-study-report-1/machine-learning-methods-for-orbital-debris-characterization.html @@ -56,7 +56,7 @@ pre > code.sourceCode > span > a:first-child::before { text-decoration: underlin } code span.al { color: #ad0000; } /* Alert */ code span.an { color: #5e5e5e; } /* Annotation */ -code span.at { color: #20794d; } /* Attribute */ +code span.at { } /* Attribute */ code span.bn { color: #ad0000; } /* BaseN */ code span.bu { } /* BuiltIn */ code span.cf { color: #007ba5; } /* ControlFlow */ @@ -77,7 +77,7 @@ code span.kw { color: #007ba5; } /* Keyword */ code span.op { color: #5e5e5e; } /* Operator */ code span.ot { color: #007ba5; } /* Other */ code span.pp { color: #ad0000; } /* Preprocessor */ -code span.sc { color: #20794d; } /* SpecialChar */ +code span.sc { color: #5e5e5e; } /* SpecialChar */ code span.ss { color: #20794d; } /* SpecialString */ code span.st { color: #20794d; } /* String */ code span.va { color: #111111; } /* Variable */ @@ -85,6 +85,7 @@ code span.vs { color: #20794d; } /* VerbatimString */ code span.wa { color: #5e5e5e; font-style: italic; } /* Warning */ + Machine Learning Directed Study: Report 1 @@ -116,7 +117,7 @@ code span.wa { color: #5e5e5e; font-style: italic; } /* Warning */ @@ -1263,7 +1264,10 @@ code span.wa { color: #5e5e5e; font-style: italic; } /* Warning */ // hoverable references $('span.citation[data-cites]').each(function() { - var refHtml = $('#ref-' + $(this).attr('data-cites')).html(); + var refs = $(this).attr('data-cites').split(" "); + var refHtml = refs.map(function(ref) { + return "

" + $('#ref-' + ref).html() + "

"; + }).join("\n"); window.tippy(this, { allowHTML: true, content: refHtml,