Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
kristiankersting committed Mar 24, 2024
1 parent ff34a40 commit 5280290
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1855,11 +1855,13 @@ <h2>Contact</h2>

<script type="text/javascript">
$(document).ready(function () {
$.get('https://ml-research.github.io/references.bib', function (data) {
//$.get('file:///Users/kersting/Documents/GitHub/ml-research.github.io/references.bib', function (data) {

$.get('https://ml-research.github.io/references.bib', function (references) {
//$.get('file:///Users/kersting/Documents/GitHub/ml-research.github.io/references.bib', function (data) {

$("#bibtex").html(references);
bibtex = data.split(/(?=@\w+)/u);

$("#bibtex").html(data);
bibtexify("#bibtex", "pubTable");
});
});
Expand Down

0 comments on commit 5280290

Please sign in to comment.