This file contains hidden or 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
| <Aggregate type="min" required="true"> | |
| <Compare metric="inequality" required="false"> | |
| <Input path="?a" /> | |
| <Input path="?b" /> | |
| </Compare> | |
| <Aggregate type="average"> | |
| <Compare metric="equality" required="true"> | |
| <TransformInput function="lowerCase"> | |
| <TransformInput function="removeSpecialChars"> |
This file contains hidden or 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
| # Per-category pagination. Useful for multilingual blogs =) | |
| # It will react, regarding your configuration in `config.yml`: | |
| # | |
| # paginate_per_category: true|false - activate this pagination or keep the | |
| # default one | |
| # default_category: "en" - determine the default category if you | |
| # wish the root pagination to be this one | |
| module Jekyll | |
| module Paginate | |
| class Pagination < Generator |
This file contains hidden or 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
| data = [] | |
| $('#st1>div').each(function (i, div) { | |
| project = {}; | |
| $link = $(div).find('h3 a'); | |
| project['url'] = $link.attr('href'); | |
| project['name'] = $link.text(); | |
| $specs = $(div).find('.specs') | |
| if ($specs.length) { | |
| specs = $specs.text(); |
This file contains hidden or 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
| import BEM from 'react-bem-helper'; | |
| import _o from 'lodash/object'; | |
| export default function (blockName, opts = {}) { | |
| const def = { | |
| name: blockName, | |
| prefix: null | |
| }; | |
| return new BEM(_o.merge(def, opts)); | |
| } |
OlderNewer