This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this script requires jQuery | |
$(document).ready(function() { | |
Footnotes.setup(); | |
}); | |
var Footnotes = { | |
currentFootnote: null, | |
useTouch: false, | |
setup: function() { | |
// Find all footnote links that are already on the page |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# | |
# A pre-commit hook to verify PEP8 conformity using flake8 | |
# and to run all available unit tests | |
import subprocess | |
import sys | |
import os | |
import glob |