We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e8223f8 + 714912e commit d09e116Copy full SHA for d09e116
docs/javascripts/tablesort.js
@@ -0,0 +1,6 @@
1
+document$.subscribe(function() {
2
+ var tables = document.querySelectorAll("article table:not([class])")
3
+ tables.forEach(function(table) {
4
+ new Tablesort(table)
5
+ })
6
+})
mkdocs.yml
@@ -6,9 +6,7 @@ copyright: GeoBlacklight Community © 2015 - 2024
theme:
7
name: material
8
logo: images/gbl-favicon.png
9
- favicon: images/gbl-favicon.png
10
-
11
+ favicon: images/gbl-favicon.png
12
palette:
13
primary: white
14
@@ -56,6 +54,10 @@ markdown_extensions:
56
54
options:
57
55
custom_icons:
58
- overrides/.icons
+
+extra_javascript:
59
+ - https://unpkg.com/[email protected]/dist/tablesort.min.js
60
+ - javascripts/tablesort.js
61
62
plugins:
63
- search
0 commit comments