feat(wip_for_article)

Work on the examples of plugins and extensions
This commit is contained in:
TGITS
2024-02-13 19:34:12 +01:00
parent a2df76edcc
commit c633d97352
3 changed files with 86 additions and 4 deletions

View File

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