Browse Source

Script.js insertLinks called earlier

pull/29/head
Jure Šorn 6 years ago
parent
commit
5b40ce2e74
1 changed files with 1 additions and 1 deletions
  1. 2
      web/script.js

2
web/script.js

@ -12,12 +12,12 @@ function parseMd() {
nodes = $.parseHTML(html); nodes = $.parseHTML(html);
aDiv.after(nodes); aDiv.after(nodes);
removeOrigToc(); removeOrigToc();
addToc();
insertLinks(); insertLinks();
unindentBanner(); unindentBanner();
d3.selectAll("code").each(function() { d3.selectAll("code").each(function() {
hljs.highlightBlock(this); hljs.highlightBlock(this);
}); });
addToc();
}); });
} }

Loading…
Cancel
Save