-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves #88, opens up permalinks usage for files with any extension.
This commit also remaps the `match` option to accept glob patterns and formalizes the default linkset match to '**/*.html'
- Loading branch information
Showing
11 changed files
with
109 additions
and
28 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Empty file.
17 changes: 17 additions & 0 deletions
17
test/fixtures/match-pattern-complex/expected/api/plugins/index.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"items": [ | ||
{ | ||
"name": "Ancestry", | ||
"icon": "link", | ||
"repository": "https://github.com/tests-always-included/metalsmith-ancestry", | ||
"description": "Builds a file tree in metadata so you can determine parents, list children, jump to previous and next siblings." | ||
}, | ||
{ | ||
"name": "Angular $templateCache", | ||
"icon": "addfile", | ||
"repository": "https://github.com/tests-always-included/metalsmith-angular-templatecache", | ||
"description": "Convert AngularJS templates from HTML into JavaScript and preload $templateCache.", | ||
"status": "unmaintained" | ||
} | ||
] | ||
} |
4 changes: 4 additions & 0 deletions
4
test/fixtures/match-pattern-complex/expected/api/status/index.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"status": 200, | ||
"message": "OK" | ||
} |
Empty file.
Empty file.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"items": [ | ||
{ | ||
"name": "Ancestry", | ||
"icon": "link", | ||
"repository": "https://github.com/tests-always-included/metalsmith-ancestry", | ||
"description": "Builds a file tree in metadata so you can determine parents, list children, jump to previous and next siblings." | ||
}, | ||
{ | ||
"name": "Angular $templateCache", | ||
"icon": "addfile", | ||
"repository": "https://github.com/tests-always-included/metalsmith-angular-templatecache", | ||
"description": "Convert AngularJS templates from HTML into JavaScript and preload $templateCache.", | ||
"status": "unmaintained" | ||
} | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
title: Services | ||
--- |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"status": 200, | ||
"message": "OK" | ||
} |
This file contains 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