fix dates of pictures

This commit is contained in:
2022-07-06 18:05:11 +01:00
parent 63af252644
commit 0aa03bb716
341 changed files with 20130 additions and 79 deletions

1
site/js/auto-render.min.js vendored Normal file

File diff suppressed because one or more lines are too long

12
site/js/heading-links.js Normal file
View File

@ -0,0 +1,12 @@
(function() {
var els = document.querySelectorAll('.post-content [id]');
var headings = Array.prototype.slice.call(els);
headings.forEach(function(head) {
var link = document.createElement('a');
link.className = 'heading-link';
link.href = '#' + head.id;
head.appendChild(link);
});
}());

6
site/js/katex.min.js vendored Normal file

File diff suppressed because one or more lines are too long