We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 850f10f commit 93a52afCopy full SHA for 93a52af
2 files changed
Makefile
@@ -73,6 +73,8 @@ gen-doc:
73
cp -r $(PYMODEL) $(DOCDIR)/$(PYMODEL)
74
rm -rf $(DOCDIR)/$(PYMODEL)/model/docs
75
cp README.md $(DOCDIR)
76
+ mkdir -p $(DOCDIR)/javascripts
77
+ $(RUN) cp $(SRC)/utils/scripts/*.js $(DOCDIR)/javascripts/
78
79
test: test-schema test-python test-validate-schema test-examples
80
test-schema:
utils/scripts/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
0 commit comments