├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── lib └── index.js ├── package.json └── test ├── fixtures ├── basic │ └── src │ │ ├── five.md │ │ ├── four.md │ │ ├── one.md │ │ ├── three.md │ │ └── two.md ├── customseriename │ ├── build │ │ └── one.md │ └── src │ │ └── one.md └── customsortby │ ├── build │ ├── one.md │ └── two.md │ └── src │ ├── one.md │ └── two.md ├── index.js └── mocha.opts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/basic/src/five.md: -------------------------------------------------------------------------------- 1 | --- 2 | seriename: another-hit 3 | date: 2014-10-30 4 | --- 5 | 6 | five 7 | -------------------------------------------------------------------------------- /test/fixtures/basic/src/four.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/test/fixtures/basic/src/four.md -------------------------------------------------------------------------------- /test/fixtures/basic/src/one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/test/fixtures/basic/src/one.md -------------------------------------------------------------------------------- /test/fixtures/basic/src/three.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/test/fixtures/basic/src/three.md -------------------------------------------------------------------------------- /test/fixtures/basic/src/two.md: -------------------------------------------------------------------------------- 1 | --- 2 | seriename: another-hit 3 | date: 2014-09-23 4 | --- 5 | 6 | two 7 | -------------------------------------------------------------------------------- /test/fixtures/customseriename/build/one.md: -------------------------------------------------------------------------------- 1 | 2 | one 3 | -------------------------------------------------------------------------------- /test/fixtures/customseriename/src/one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/test/fixtures/customseriename/src/one.md -------------------------------------------------------------------------------- /test/fixtures/customsortby/build/one.md: -------------------------------------------------------------------------------- 1 | 2 | one 3 | -------------------------------------------------------------------------------- /test/fixtures/customsortby/build/two.md: -------------------------------------------------------------------------------- 1 | 2 | two 3 | -------------------------------------------------------------------------------- /test/fixtures/customsortby/src/one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/test/fixtures/customsortby/src/one.md -------------------------------------------------------------------------------- /test/fixtures/customsortby/src/two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/test/fixtures/customsortby/src/two.md -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocelynlecomte/metalsmith-series/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec --------------------------------------------------------------------------------