Add Shamir's Secret Sharing notes, update templates

This commit is contained in:
arnaucube
2022-05-13 20:24:59 +02:00
parent f6323e7ca4
commit b61916294d
23 changed files with 498 additions and 5 deletions

View File

@@ -27,6 +27,10 @@ ready(function() {
for (var i = 0; i < anchorElsLength; i++) {
var anchorEl = anchorEls[i];
var href = anchorEl.getAttribute('href');
if (href[0]=="#") {
// if its an internal link, do not add the 'target=_blank'
continue;
}
if (!internalLinkRegex.test(href)) {
anchorEl.setAttribute('target', '_blank');