Eric Nemchik 2bcd826be7 mkdocs updates
Signed-off-by: Eric Nemchik <eric@nemchik.com>
2023-08-02 13:11:11 -05:00

7 lines
178 B
JavaScript

document$.subscribe(function () {
var tables = document.querySelectorAll("article table:not([class])");
tables.forEach(function (table) {
new Tablesort(table);
});
});