mirror of
https://github.com/TGITS/fun-with-mkdocs.git
synced 2026-06-11 09:55:00 +02:00
c633d97352
Work on the examples of plugins and extensions
6 lines
181 B
JavaScript
6 lines
181 B
JavaScript
document$.subscribe(function() {
|
|
var tables = document.querySelectorAll("article table:not([class])")
|
|
tables.forEach(function(table) {
|
|
new Tablesort(table)
|
|
})
|
|
}) |