-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
i511895
committed
Nov 19, 2021
1 parent
623a5cc
commit 93593bc
Showing
10 changed files
with
716 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
...saurus-plugin-content-blog/src/__tests__/__fixtures__/tagsListFiles/tagsObjectSimple.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,19 @@ | ||
{ | ||
"tags": [ | ||
{ | ||
"label": "i18n" | ||
}, | ||
{ | ||
"label": "release" | ||
}, | ||
{ | ||
"label": "recap" | ||
}, | ||
{ | ||
"label": "adoption" | ||
}, | ||
{ | ||
"label": "new" | ||
} | ||
] | ||
} |
6 changes: 6 additions & 0 deletions
6
...usaurus-plugin-content-blog/src/__tests__/__fixtures__/tagsListFiles/tagsObjectSimple.yml
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,6 @@ | ||
tags: | ||
- label: i18n | ||
- label: release | ||
- label: recap | ||
- label: adoption | ||
- label: new |
22 changes: 22 additions & 0 deletions
22
.../docusaurus-plugin-content-blog/src/__tests__/__fixtures__/tagsListFiles/tagsObjects.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,22 @@ | ||
{ | ||
"tags": [ | ||
{ | ||
"label": "i18n", | ||
"permalink": "/blog/i18n" | ||
}, | ||
{ | ||
"label": "release", | ||
"permalink": "/blog/release" | ||
}, | ||
{ | ||
"label": "recap", | ||
"permalink": "/blog/recap" | ||
}, | ||
{ | ||
"label": "adoption" | ||
}, | ||
{ | ||
"label": "new" | ||
} | ||
] | ||
} |
9 changes: 9 additions & 0 deletions
9
...s/docusaurus-plugin-content-blog/src/__tests__/__fixtures__/tagsListFiles/tagsObjects.yml
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,9 @@ | ||
tags: | ||
- label: i18n | ||
permalink: /blog/i18n | ||
- label: release | ||
permalink: /blog/release | ||
- label: recap | ||
permalink: /blog/release | ||
- label: adoption | ||
- label: new |
19 changes: 19 additions & 0 deletions
19
...s/docusaurus-plugin-content-blog/src/__tests__/__fixtures__/tagsListFiles/tagsSimple.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,19 @@ | ||
{ | ||
"tags": [ | ||
{ | ||
"label": "i18n" | ||
}, | ||
{ | ||
"label": "release" | ||
}, | ||
{ | ||
"label": "recap" | ||
}, | ||
{ | ||
"label": "adoption" | ||
}, | ||
{ | ||
"label": "new" | ||
} | ||
] | ||
} |
6 changes: 6 additions & 0 deletions
6
...es/docusaurus-plugin-content-blog/src/__tests__/__fixtures__/tagsListFiles/tagsSimple.yml
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,6 @@ | ||
tags: | ||
- label: i18n | ||
- label: release | ||
- label: recap | ||
- label: adoption | ||
- label: new |
Oops, something went wrong.