Files
fun-with-mkdocs/docs/javascripts/tablesort.js
TGITS c633d97352 feat(wip_for_article)
Work on the examples of plugins and extensions
2024-02-13 19:34:12 +01:00

6 lines
181 B
JavaScript

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