We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8262d05 + 37f1efc commit 0749788Copy full SHA for 0749788
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
docs/stylesheets/extra.css
@@ -9,3 +9,7 @@
9
margin-right: auto;
10
margin-bottom: auto;
11
}
12
+
13
+.md-grid {
14
+ max-width: none;
15
+}
mkdocs.yml
@@ -71,6 +71,10 @@ nav:
71
extra_css:
72
- stylesheets/extra.css
73
74
+extra_javascript:
75
+ - https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
76
+ - javascripts/tablesort.js
77
78
extra:
79
version:
80
provider: mike
0 commit comments