Merge pull request #13 from mathiasbynens/patch-1
Simplify collection filtering using `startsWith`
This commit is contained in:
commit
ec2c6f5b05
@ -15,7 +15,7 @@ module.exports = function(eleventyConfig) {
|
||||
// only content in the `posts/` directory
|
||||
eleventyConfig.addCollection("posts", function(collection) {
|
||||
return collection.getAllSorted().filter(function(item) {
|
||||
return item.inputPath.match(/^\.\/posts\//) !== null;
|
||||
return item.inputPath.startsWith('./posts');
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user