Skip to content

Commit

Permalink
Deployed f44de7a with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
quantfreedom committed Dec 7, 2023
1 parent 17b3aa6 commit f3b966c
Show file tree
Hide file tree
Showing 47 changed files with 3,953 additions and 34,065 deletions.
391 changes: 77 additions & 314 deletions 404.html

Large diffs are not rendered by default.

452 changes: 78 additions & 374 deletions index.html

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions js/open_in_new_tab.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// Description: Open external links in a new tab and PDF links in a new tab
// Source: https://jekyllcodex.org/without-plugin/new-window-fix/

//open external links in a new window
function external_new_window() {
for(let c = document.getElementsByTagName("a"), a = 0;a < c.length;a++) {
let b = c[a];
if(b.getAttribute("href") && b.hostname !== location.hostname) {
b.target = "_blank";
b.rel = "noopener";
}
}
}
//open PDF links in a new window
function pdf_new_window ()
{
if (!document.getElementsByTagName) {
return false;
}
let links = document.getElementsByTagName("a");
for (let eleLink=0; eleLink < links.length; eleLink ++) {
if ((links[eleLink].href.indexOf('.pdf') !== -1)||(links[eleLink].href.indexOf('.doc') !== -1)||(links[eleLink].href.indexOf('.docx') !== -1)) {
links[eleLink].onclick =
function() {
window.open(this.href);
return false;
}
}
}
}

function apply_rules() {
external_new_window();
pdf_new_window();
}

if (typeof document$ !== "undefined") {
// compatibility with mkdocs-material's instant loading feature
// based on code from https://github.com/timvink/mkdocs-charts-plugin
// Copyright (c) 2021 Tim Vink - MIT License
// fixes [Issue #2](https://github.com/JakubAndrysek/mkdocs-open-in-new-tab/issues/2)
document$.subscribe(function() {
apply_rules();
})
}
Loading

0 comments on commit f3b966c

Please sign in to comment.