new API page in docs

This commit is contained in:
les
2020-02-02 21:08:16 +01:00
parent 2bcf1fc9a0
commit a1073642b5
9 changed files with 185 additions and 10 deletions

8
docs/.api_helpers.js Normal file
View File

@@ -0,0 +1,8 @@
exports.if_eq = function(a, b, opts) {
if (a == b) {
return opts.fn(this);
} else {
return opts.inverse(this);
}
}