Deployed 961896f with MkDocs version: 1.6.1

This commit is contained in:
github-actions[bot] 2024-12-23 17:42:39 +00:00
commit 8cc6ec3da5
132 changed files with 17133 additions and 0 deletions

6
javascripts/tablesort.js Normal file
View file

@ -0,0 +1,6 @@
document$.subscribe(function() {
var tables = document.querySelectorAll("article table:not([class])")
tables.forEach(function(table) {
new Tablesort(table)
})
})