spaCy/website/_includes/_functions.jade
2016-10-31 19:04:15 +01:00

24 lines
617 B
Plaintext

//- 💫 INCLUDES > FUNCTIONS
//- More descriptive variables for current.path and current.source
- CURRENT = current.source
- SECTION = current.path[0]
- SUBSECTION = current.path[1]
//- Add prefixes to items of an array (for modifier CSS classes)
- function prefixArgs(array, prefix) {
- return array.map(function(arg) {
- return prefix + '--' + arg;
- }).join(' ');
- }
//- Generate GitHub links
- function gh(repo, filepath, branch) {
- return 'https://github.com/' + SOCIAL.github + '/' + repo + (filepath ? '/blob/' + (branch || 'master') + '/' + filepath : '' );
- }