├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .verb.md ├── CHANGELOG ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── docs ├── examples.md ├── options.md ├── patterns.md ├── quickstart.md └── seo.md ├── index.js ├── package.json └── test ├── actual ├── built_in_property │ ├── articles │ │ ├── bar │ │ │ └── index.html │ │ ├── baz │ │ │ └── index.html │ │ ├── index.html │ │ └── nested │ │ │ └── quux │ │ │ └── index.html │ ├── foo │ │ └── index.html │ └── index.html ├── collections_complex │ ├── 2013 │ │ └── 10 │ │ │ └── 02 │ │ │ └── foo │ │ │ └── index.html │ ├── articles │ │ ├── 2013 │ │ │ └── 10 │ │ │ │ └── 02 │ │ │ │ ├── bar │ │ │ │ └── index.html │ │ │ │ └── baz │ │ │ │ └── index.html │ │ ├── index.html │ │ └── nested │ │ │ └── 2013 │ │ │ └── 04 │ │ │ └── 10 │ │ │ └── quux │ │ │ └── index.html │ └── index.html ├── collections_pretty │ ├── articles │ │ ├── bar │ │ │ └── index.html │ │ ├── baz │ │ │ └── index.html │ │ ├── index.html │ │ └── nested │ │ │ └── quux │ │ │ └── index.html │ ├── foo │ │ └── index.html │ └── index.html ├── date_collision │ ├── 2013 │ │ └── 10 │ │ │ └── 02 │ │ │ └── foo │ │ │ └── index.html │ ├── articles │ │ ├── 2013 │ │ │ └── 10 │ │ │ │ └── 02 │ │ │ │ ├── bar │ │ │ │ └── index.html │ │ │ │ └── baz │ │ │ │ └── index.html │ │ ├── index.html │ │ └── nested │ │ │ └── 2013 │ │ │ └── 04 │ │ │ └── 10 │ │ │ └── quux │ │ │ └── index.html │ └── index.html ├── dates │ ├── 2013 │ │ └── 10 │ │ │ └── 02 │ │ │ └── foo │ │ │ └── index.html │ ├── articles │ │ ├── 2013 │ │ │ └── 10 │ │ │ │ └── 02 │ │ │ │ ├── bar │ │ │ │ └── index.html │ │ │ │ └── baz │ │ │ │ └── index.html │ │ ├── index.html │ │ └── nested │ │ │ └── 2013 │ │ │ └── 04 │ │ │ └── 10 │ │ │ └── quux │ │ │ └── index.html │ └── index.html ├── digits_auto │ ├── articles │ │ ├── blog │ │ │ ├── bar-1.html │ │ │ └── baz-2.html │ │ ├── index.html │ │ └── nested │ │ │ └── blog │ │ │ └── quux-4.html │ ├── index.html │ └── plugins │ │ └── foo-5.html ├── digits_specified │ ├── articles │ │ ├── blog │ │ │ ├── bar-0001.html │ │ │ └── baz-0002.html │ │ ├── index.html │ │ └── nested │ │ │ └── blog │ │ │ └── quux-0004.html │ ├── index.html │ └── plugins │ │ └── foo-0005.html ├── filename_replacement │ ├── bar │ │ └── index.html │ ├── foo │ │ └── index.html │ ├── last-year │ │ └── index.html │ └── new-year │ │ └── index.html ├── index_pages │ ├── articles │ │ ├── bar │ │ │ └── index.html │ │ ├── baz │ │ │ └── index.html │ │ ├── index.html │ │ └── nested │ │ │ └── quux │ │ │ └── index.html │ ├── foo │ │ └── index.html │ └── index.html ├── no_opts_files │ ├── articles │ │ ├── bar.html │ │ ├── baz.html │ │ ├── index.html │ │ └── nested │ │ │ └── quux.html │ ├── foo.html │ └── index.html ├── no_opts_flatten │ ├── bar.html │ ├── baz.html │ ├── foo.html │ ├── index.html │ └── quux.html ├── preset_dayname │ ├── 2013 │ │ └── 10 │ │ │ └── 02 │ │ │ └── foo │ │ │ └── index.html │ ├── articles │ │ ├── 2013 │ │ │ └── 10 │ │ │ │ └── 02 │ │ │ │ ├── bar │ │ │ │ └── index.html │ │ │ │ └── baz │ │ │ │ └── index.html │ │ ├── index.html │ │ └── nested │ │ │ └── 2013 │ │ │ └── 04 │ │ │ └── 10 │ │ │ └── quux │ │ │ └── index.html │ └── index.html ├── preset_flatten │ ├── blog │ │ ├── bar │ │ │ └── index.html │ │ ├── baz │ │ │ └── index.html │ │ └── quux │ │ │ └── index.html │ ├── index.html │ └── plugins │ │ └── foo │ │ └── index.html ├── preset_monthname │ ├── 2013 │ │ └── 10 │ │ │ └── foo │ │ │ └── index.html │ ├── articles │ │ ├── 2013 │ │ │ └── 10 │ │ │ │ ├── bar │ │ │ │ └── index.html │ │ │ │ └── baz │ │ │ │ └── index.html │ │ ├── index.html │ │ └── nested │ │ │ └── 2013 │ │ │ └── 04 │ │ │ └── quux │ │ │ └── index.html │ └── index.html ├── preset_pretty │ ├── articles │ │ ├── bar │ │ │ └── index.html │ │ ├── baz │ │ │ └── index.html │ │ ├── index.html │ │ └── nested │ │ │ └── quux │ │ │ └── index.html │ ├── foo │ │ └── index.html │ └── index.html ├── replacement_function │ ├── articles │ │ ├── bbb │ │ │ ├── bar.html │ │ │ └── baz.html │ │ ├── index.html │ │ └── nested │ │ │ └── two │ │ │ └── quux.html │ ├── index.html │ └── one │ │ └── foo.html ├── replacement_pattern │ ├── articles │ │ ├── assemble-middleware-permalinks │ │ │ └── jon-schlinkert │ │ │ │ ├── bar │ │ │ │ └── index.html │ │ │ │ └── baz │ │ │ │ └── index.html │ │ ├── grunt-assemble-permalinks │ │ │ ├── bar │ │ │ │ └── index.html │ │ │ └── baz │ │ │ │ └── index.html │ │ ├── index.html │ │ └── nested │ │ │ ├── assemble-middleware-permalinks │ │ │ └── jon-schlinkert │ │ │ │ └── quux │ │ │ │ └── index.html │ │ │ └── grunt-assemble-permalinks │ │ │ └── quux │ │ │ └── index.html │ ├── assemble-middleware-permalinks │ │ └── jon-schlinkert │ │ │ └── foo │ │ │ └── index.html │ ├── grunt-assemble-permalinks │ │ └── foo │ │ │ └── index.html │ └── index.html ├── structure_basename │ ├── articles │ │ ├── bar.html │ │ ├── baz.html │ │ ├── index.html │ │ └── nested │ │ │ └── quux.html │ ├── foo.html │ └── index.html ├── structure_date │ ├── 2013 │ │ └── 10 │ │ │ └── 02 │ │ │ └── index.html │ ├── articles │ │ ├── 2013 │ │ │ └── 10 │ │ │ │ └── 02 │ │ │ │ └── index.html │ │ ├── index.html │ │ └── nested │ │ │ └── 2013 │ │ │ └── 04 │ │ │ └── 10 │ │ │ └── index.html │ └── index.html ├── yfm_custom_property │ ├── articles │ │ ├── custom-prop │ │ │ └── index.html │ │ ├── index.html │ │ ├── nested │ │ │ └── quux │ │ │ │ └── index.html │ │ └── this-is-a-custom-prop │ │ │ └── index.html │ ├── custom │ │ └── path │ │ │ └── index.html │ └── index.html └── yfm_permalinks │ ├── articles │ ├── bar │ │ └── index.html │ ├── baz │ │ └── index.html │ ├── index.html │ └── nested │ │ └── quux │ │ └── 2013 │ │ └── yfm │ │ └── quux.html │ ├── index.html │ └── plugins │ └── foo │ └── index.html ├── assets └── validation.css └── fixtures ├── default.hbs ├── helpers ├── navigation.js ├── not.js ├── pager.js ├── pagination.js ├── rel.js ├── relative.js └── times.js ├── ipsum.json ├── pages ├── articles │ ├── bar.hbs │ ├── baz.hbs │ ├── index.hbs │ └── nested │ │ └── quux.hbs ├── foo.hbs └── index.hbs ├── posts ├── 2013-10-11-foo.md ├── 2013-12-31-last-year.md ├── 2014-01-01-new-year.md └── 2014-02-12-bar.md ├── slugs └── UGLy nAme for SluGiFy.hbs └── yfm-pages ├── articles ├── bar.hbs ├── baz.hbs ├── index.hbs └── nested │ └── quux.hbs ├── foo.hbs └── index.hbs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/.verb.md -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/bower.json -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/docs/options.md -------------------------------------------------------------------------------- /docs/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/docs/patterns.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/seo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/docs/seo.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/package.json -------------------------------------------------------------------------------- /test/actual/built_in_property/articles/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/built_in_property/articles/bar/index.html -------------------------------------------------------------------------------- /test/actual/built_in_property/articles/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/built_in_property/articles/baz/index.html -------------------------------------------------------------------------------- /test/actual/built_in_property/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/built_in_property/articles/index.html -------------------------------------------------------------------------------- /test/actual/built_in_property/articles/nested/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/built_in_property/articles/nested/quux/index.html -------------------------------------------------------------------------------- /test/actual/built_in_property/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/built_in_property/foo/index.html -------------------------------------------------------------------------------- /test/actual/built_in_property/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/built_in_property/index.html -------------------------------------------------------------------------------- /test/actual/collections_complex/2013/10/02/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_complex/2013/10/02/foo/index.html -------------------------------------------------------------------------------- /test/actual/collections_complex/articles/2013/10/02/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_complex/articles/2013/10/02/bar/index.html -------------------------------------------------------------------------------- /test/actual/collections_complex/articles/2013/10/02/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_complex/articles/2013/10/02/baz/index.html -------------------------------------------------------------------------------- /test/actual/collections_complex/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_complex/articles/index.html -------------------------------------------------------------------------------- /test/actual/collections_complex/articles/nested/2013/04/10/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_complex/articles/nested/2013/04/10/quux/index.html -------------------------------------------------------------------------------- /test/actual/collections_complex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_complex/index.html -------------------------------------------------------------------------------- /test/actual/collections_pretty/articles/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_pretty/articles/bar/index.html -------------------------------------------------------------------------------- /test/actual/collections_pretty/articles/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_pretty/articles/baz/index.html -------------------------------------------------------------------------------- /test/actual/collections_pretty/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_pretty/articles/index.html -------------------------------------------------------------------------------- /test/actual/collections_pretty/articles/nested/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_pretty/articles/nested/quux/index.html -------------------------------------------------------------------------------- /test/actual/collections_pretty/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_pretty/foo/index.html -------------------------------------------------------------------------------- /test/actual/collections_pretty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/collections_pretty/index.html -------------------------------------------------------------------------------- /test/actual/date_collision/2013/10/02/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/date_collision/2013/10/02/foo/index.html -------------------------------------------------------------------------------- /test/actual/date_collision/articles/2013/10/02/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/date_collision/articles/2013/10/02/bar/index.html -------------------------------------------------------------------------------- /test/actual/date_collision/articles/2013/10/02/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/date_collision/articles/2013/10/02/baz/index.html -------------------------------------------------------------------------------- /test/actual/date_collision/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/date_collision/articles/index.html -------------------------------------------------------------------------------- /test/actual/date_collision/articles/nested/2013/04/10/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/date_collision/articles/nested/2013/04/10/quux/index.html -------------------------------------------------------------------------------- /test/actual/date_collision/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/date_collision/index.html -------------------------------------------------------------------------------- /test/actual/dates/2013/10/02/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/dates/2013/10/02/foo/index.html -------------------------------------------------------------------------------- /test/actual/dates/articles/2013/10/02/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/dates/articles/2013/10/02/bar/index.html -------------------------------------------------------------------------------- /test/actual/dates/articles/2013/10/02/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/dates/articles/2013/10/02/baz/index.html -------------------------------------------------------------------------------- /test/actual/dates/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/dates/articles/index.html -------------------------------------------------------------------------------- /test/actual/dates/articles/nested/2013/04/10/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/dates/articles/nested/2013/04/10/quux/index.html -------------------------------------------------------------------------------- /test/actual/dates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/dates/index.html -------------------------------------------------------------------------------- /test/actual/digits_auto/articles/blog/bar-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_auto/articles/blog/bar-1.html -------------------------------------------------------------------------------- /test/actual/digits_auto/articles/blog/baz-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_auto/articles/blog/baz-2.html -------------------------------------------------------------------------------- /test/actual/digits_auto/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_auto/articles/index.html -------------------------------------------------------------------------------- /test/actual/digits_auto/articles/nested/blog/quux-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_auto/articles/nested/blog/quux-4.html -------------------------------------------------------------------------------- /test/actual/digits_auto/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_auto/index.html -------------------------------------------------------------------------------- /test/actual/digits_auto/plugins/foo-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_auto/plugins/foo-5.html -------------------------------------------------------------------------------- /test/actual/digits_specified/articles/blog/bar-0001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_specified/articles/blog/bar-0001.html -------------------------------------------------------------------------------- /test/actual/digits_specified/articles/blog/baz-0002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_specified/articles/blog/baz-0002.html -------------------------------------------------------------------------------- /test/actual/digits_specified/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_specified/articles/index.html -------------------------------------------------------------------------------- /test/actual/digits_specified/articles/nested/blog/quux-0004.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_specified/articles/nested/blog/quux-0004.html -------------------------------------------------------------------------------- /test/actual/digits_specified/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_specified/index.html -------------------------------------------------------------------------------- /test/actual/digits_specified/plugins/foo-0005.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/digits_specified/plugins/foo-0005.html -------------------------------------------------------------------------------- /test/actual/filename_replacement/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/filename_replacement/bar/index.html -------------------------------------------------------------------------------- /test/actual/filename_replacement/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/filename_replacement/foo/index.html -------------------------------------------------------------------------------- /test/actual/filename_replacement/last-year/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/filename_replacement/last-year/index.html -------------------------------------------------------------------------------- /test/actual/filename_replacement/new-year/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/filename_replacement/new-year/index.html -------------------------------------------------------------------------------- /test/actual/index_pages/articles/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/index_pages/articles/bar/index.html -------------------------------------------------------------------------------- /test/actual/index_pages/articles/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/index_pages/articles/baz/index.html -------------------------------------------------------------------------------- /test/actual/index_pages/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/index_pages/articles/index.html -------------------------------------------------------------------------------- /test/actual/index_pages/articles/nested/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/index_pages/articles/nested/quux/index.html -------------------------------------------------------------------------------- /test/actual/index_pages/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/index_pages/foo/index.html -------------------------------------------------------------------------------- /test/actual/index_pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/index_pages/index.html -------------------------------------------------------------------------------- /test/actual/no_opts_files/articles/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/no_opts_files/articles/bar.html -------------------------------------------------------------------------------- /test/actual/no_opts_files/articles/baz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/no_opts_files/articles/baz.html -------------------------------------------------------------------------------- /test/actual/no_opts_files/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/no_opts_files/articles/index.html -------------------------------------------------------------------------------- /test/actual/no_opts_files/articles/nested/quux.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/no_opts_files/articles/nested/quux.html -------------------------------------------------------------------------------- /test/actual/no_opts_files/foo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/no_opts_files/foo.html -------------------------------------------------------------------------------- /test/actual/no_opts_files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/no_opts_files/index.html -------------------------------------------------------------------------------- /test/actual/no_opts_flatten/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/no_opts_flatten/bar.html -------------------------------------------------------------------------------- /test/actual/no_opts_flatten/baz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/no_opts_flatten/baz.html -------------------------------------------------------------------------------- /test/actual/no_opts_flatten/foo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/no_opts_flatten/foo.html -------------------------------------------------------------------------------- /test/actual/no_opts_flatten/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/no_opts_flatten/index.html -------------------------------------------------------------------------------- /test/actual/no_opts_flatten/quux.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/no_opts_flatten/quux.html -------------------------------------------------------------------------------- /test/actual/preset_dayname/2013/10/02/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_dayname/2013/10/02/foo/index.html -------------------------------------------------------------------------------- /test/actual/preset_dayname/articles/2013/10/02/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_dayname/articles/2013/10/02/bar/index.html -------------------------------------------------------------------------------- /test/actual/preset_dayname/articles/2013/10/02/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_dayname/articles/2013/10/02/baz/index.html -------------------------------------------------------------------------------- /test/actual/preset_dayname/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_dayname/articles/index.html -------------------------------------------------------------------------------- /test/actual/preset_dayname/articles/nested/2013/04/10/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_dayname/articles/nested/2013/04/10/quux/index.html -------------------------------------------------------------------------------- /test/actual/preset_dayname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_dayname/index.html -------------------------------------------------------------------------------- /test/actual/preset_flatten/blog/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_flatten/blog/bar/index.html -------------------------------------------------------------------------------- /test/actual/preset_flatten/blog/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_flatten/blog/baz/index.html -------------------------------------------------------------------------------- /test/actual/preset_flatten/blog/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_flatten/blog/quux/index.html -------------------------------------------------------------------------------- /test/actual/preset_flatten/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_flatten/index.html -------------------------------------------------------------------------------- /test/actual/preset_flatten/plugins/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_flatten/plugins/foo/index.html -------------------------------------------------------------------------------- /test/actual/preset_monthname/2013/10/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_monthname/2013/10/foo/index.html -------------------------------------------------------------------------------- /test/actual/preset_monthname/articles/2013/10/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_monthname/articles/2013/10/bar/index.html -------------------------------------------------------------------------------- /test/actual/preset_monthname/articles/2013/10/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_monthname/articles/2013/10/baz/index.html -------------------------------------------------------------------------------- /test/actual/preset_monthname/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_monthname/articles/index.html -------------------------------------------------------------------------------- /test/actual/preset_monthname/articles/nested/2013/04/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_monthname/articles/nested/2013/04/quux/index.html -------------------------------------------------------------------------------- /test/actual/preset_monthname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_monthname/index.html -------------------------------------------------------------------------------- /test/actual/preset_pretty/articles/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_pretty/articles/bar/index.html -------------------------------------------------------------------------------- /test/actual/preset_pretty/articles/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_pretty/articles/baz/index.html -------------------------------------------------------------------------------- /test/actual/preset_pretty/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_pretty/articles/index.html -------------------------------------------------------------------------------- /test/actual/preset_pretty/articles/nested/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_pretty/articles/nested/quux/index.html -------------------------------------------------------------------------------- /test/actual/preset_pretty/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_pretty/foo/index.html -------------------------------------------------------------------------------- /test/actual/preset_pretty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/preset_pretty/index.html -------------------------------------------------------------------------------- /test/actual/replacement_function/articles/bbb/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_function/articles/bbb/bar.html -------------------------------------------------------------------------------- /test/actual/replacement_function/articles/bbb/baz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_function/articles/bbb/baz.html -------------------------------------------------------------------------------- /test/actual/replacement_function/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_function/articles/index.html -------------------------------------------------------------------------------- /test/actual/replacement_function/articles/nested/two/quux.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_function/articles/nested/two/quux.html -------------------------------------------------------------------------------- /test/actual/replacement_function/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_function/index.html -------------------------------------------------------------------------------- /test/actual/replacement_function/one/foo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_function/one/foo.html -------------------------------------------------------------------------------- /test/actual/replacement_pattern/articles/assemble-middleware-permalinks/jon-schlinkert/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_pattern/articles/assemble-middleware-permalinks/jon-schlinkert/bar/index.html -------------------------------------------------------------------------------- /test/actual/replacement_pattern/articles/assemble-middleware-permalinks/jon-schlinkert/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_pattern/articles/assemble-middleware-permalinks/jon-schlinkert/baz/index.html -------------------------------------------------------------------------------- /test/actual/replacement_pattern/articles/grunt-assemble-permalinks/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_pattern/articles/grunt-assemble-permalinks/bar/index.html -------------------------------------------------------------------------------- /test/actual/replacement_pattern/articles/grunt-assemble-permalinks/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_pattern/articles/grunt-assemble-permalinks/baz/index.html -------------------------------------------------------------------------------- /test/actual/replacement_pattern/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_pattern/articles/index.html -------------------------------------------------------------------------------- /test/actual/replacement_pattern/articles/nested/assemble-middleware-permalinks/jon-schlinkert/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_pattern/articles/nested/assemble-middleware-permalinks/jon-schlinkert/quux/index.html -------------------------------------------------------------------------------- /test/actual/replacement_pattern/articles/nested/grunt-assemble-permalinks/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_pattern/articles/nested/grunt-assemble-permalinks/quux/index.html -------------------------------------------------------------------------------- /test/actual/replacement_pattern/assemble-middleware-permalinks/jon-schlinkert/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_pattern/assemble-middleware-permalinks/jon-schlinkert/foo/index.html -------------------------------------------------------------------------------- /test/actual/replacement_pattern/grunt-assemble-permalinks/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_pattern/grunt-assemble-permalinks/foo/index.html -------------------------------------------------------------------------------- /test/actual/replacement_pattern/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/replacement_pattern/index.html -------------------------------------------------------------------------------- /test/actual/structure_basename/articles/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/structure_basename/articles/bar.html -------------------------------------------------------------------------------- /test/actual/structure_basename/articles/baz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/structure_basename/articles/baz.html -------------------------------------------------------------------------------- /test/actual/structure_basename/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/structure_basename/articles/index.html -------------------------------------------------------------------------------- /test/actual/structure_basename/articles/nested/quux.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/structure_basename/articles/nested/quux.html -------------------------------------------------------------------------------- /test/actual/structure_basename/foo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/structure_basename/foo.html -------------------------------------------------------------------------------- /test/actual/structure_basename/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/structure_basename/index.html -------------------------------------------------------------------------------- /test/actual/structure_date/2013/10/02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/structure_date/2013/10/02/index.html -------------------------------------------------------------------------------- /test/actual/structure_date/articles/2013/10/02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/structure_date/articles/2013/10/02/index.html -------------------------------------------------------------------------------- /test/actual/structure_date/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/structure_date/articles/index.html -------------------------------------------------------------------------------- /test/actual/structure_date/articles/nested/2013/04/10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/structure_date/articles/nested/2013/04/10/index.html -------------------------------------------------------------------------------- /test/actual/structure_date/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/structure_date/index.html -------------------------------------------------------------------------------- /test/actual/yfm_custom_property/articles/custom-prop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_custom_property/articles/custom-prop/index.html -------------------------------------------------------------------------------- /test/actual/yfm_custom_property/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_custom_property/articles/index.html -------------------------------------------------------------------------------- /test/actual/yfm_custom_property/articles/nested/quux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_custom_property/articles/nested/quux/index.html -------------------------------------------------------------------------------- /test/actual/yfm_custom_property/articles/this-is-a-custom-prop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_custom_property/articles/this-is-a-custom-prop/index.html -------------------------------------------------------------------------------- /test/actual/yfm_custom_property/custom/path/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_custom_property/custom/path/index.html -------------------------------------------------------------------------------- /test/actual/yfm_custom_property/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_custom_property/index.html -------------------------------------------------------------------------------- /test/actual/yfm_permalinks/articles/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_permalinks/articles/bar/index.html -------------------------------------------------------------------------------- /test/actual/yfm_permalinks/articles/baz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_permalinks/articles/baz/index.html -------------------------------------------------------------------------------- /test/actual/yfm_permalinks/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_permalinks/articles/index.html -------------------------------------------------------------------------------- /test/actual/yfm_permalinks/articles/nested/quux/2013/yfm/quux.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_permalinks/articles/nested/quux/2013/yfm/quux.html -------------------------------------------------------------------------------- /test/actual/yfm_permalinks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_permalinks/index.html -------------------------------------------------------------------------------- /test/actual/yfm_permalinks/plugins/foo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/actual/yfm_permalinks/plugins/foo/index.html -------------------------------------------------------------------------------- /test/assets/validation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/assets/validation.css -------------------------------------------------------------------------------- /test/fixtures/default.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/default.hbs -------------------------------------------------------------------------------- /test/fixtures/helpers/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/helpers/navigation.js -------------------------------------------------------------------------------- /test/fixtures/helpers/not.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/helpers/not.js -------------------------------------------------------------------------------- /test/fixtures/helpers/pager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/helpers/pager.js -------------------------------------------------------------------------------- /test/fixtures/helpers/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/helpers/pagination.js -------------------------------------------------------------------------------- /test/fixtures/helpers/rel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/helpers/rel.js -------------------------------------------------------------------------------- /test/fixtures/helpers/relative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/helpers/relative.js -------------------------------------------------------------------------------- /test/fixtures/helpers/times.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/helpers/times.js -------------------------------------------------------------------------------- /test/fixtures/ipsum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/ipsum.json -------------------------------------------------------------------------------- /test/fixtures/pages/articles/bar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/pages/articles/bar.hbs -------------------------------------------------------------------------------- /test/fixtures/pages/articles/baz.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/pages/articles/baz.hbs -------------------------------------------------------------------------------- /test/fixtures/pages/articles/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/pages/articles/index.hbs -------------------------------------------------------------------------------- /test/fixtures/pages/articles/nested/quux.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/pages/articles/nested/quux.hbs -------------------------------------------------------------------------------- /test/fixtures/pages/foo.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/pages/foo.hbs -------------------------------------------------------------------------------- /test/fixtures/pages/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/pages/index.hbs -------------------------------------------------------------------------------- /test/fixtures/posts/2013-10-11-foo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/posts/2013-10-11-foo.md -------------------------------------------------------------------------------- /test/fixtures/posts/2013-12-31-last-year.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/posts/2013-12-31-last-year.md -------------------------------------------------------------------------------- /test/fixtures/posts/2014-01-01-new-year.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/posts/2014-01-01-new-year.md -------------------------------------------------------------------------------- /test/fixtures/posts/2014-02-12-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/posts/2014-02-12-bar.md -------------------------------------------------------------------------------- /test/fixtures/slugs/UGLy nAme for SluGiFy.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/slugs/UGLy nAme for SluGiFy.hbs -------------------------------------------------------------------------------- /test/fixtures/yfm-pages/articles/bar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/yfm-pages/articles/bar.hbs -------------------------------------------------------------------------------- /test/fixtures/yfm-pages/articles/baz.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/yfm-pages/articles/baz.hbs -------------------------------------------------------------------------------- /test/fixtures/yfm-pages/articles/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/yfm-pages/articles/index.hbs -------------------------------------------------------------------------------- /test/fixtures/yfm-pages/articles/nested/quux.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/yfm-pages/articles/nested/quux.hbs -------------------------------------------------------------------------------- /test/fixtures/yfm-pages/foo.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/yfm-pages/foo.hbs -------------------------------------------------------------------------------- /test/fixtures/yfm-pages/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/grunt-assemble-permalinks/HEAD/test/fixtures/yfm-pages/index.hbs --------------------------------------------------------------------------------