@docusaurus/plugin-content-blog 3.0.0-alpha.0 → 3.0.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.docusaurus/DONT-EDIT-THIS-FOLDER +5 -0
- package/.docusaurus/client-modules.js +5 -0
- package/.docusaurus/codeTranslations.json +1 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-only-aeb.json +10 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-only-archive-245.json +312 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-only-page-2-d48.json +11 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-only-page-3-8b6.json +10 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-only-tags-birthday-c96-list.json +9 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-only-tags-birthday-c96.json +7 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-only-tags-complex-cf3-list.json +9 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-only-tags-complex-cf3.json +7 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-only-tags-date-c24-list.json +9 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-only-tags-date-c24.json +7 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-only-tags-tags-344.json +17 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/blog-post-list-prop-default.json +30 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/plugin-route-context-module-100.json +4 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/site-src-tests-fixtures-website-blog-2018-12-14-happy-first-birthday-slash-md-d1e.json +46 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/site-src-tests-fixtures-website-blog-blog-with-links-mdx-fe5.json +22 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/site-src-tests-fixtures-website-blog-complex-slug-md-314.json +40 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/site-src-tests-fixtures-website-blog-date-matter-md-191.json +33 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/site-src-tests-fixtures-website-blog-heading-as-title-md-10c.json +25 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/site-src-tests-fixtures-website-blog-mdx-blog-post-mdx-025.json +26 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/site-src-tests-fixtures-website-blog-mdx-require-blog-post-mdx-4ba.json +26 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/site-src-tests-fixtures-website-blog-simple-slug-md-324.json +36 -0
- package/.docusaurus/docusaurus-plugin-content-blog/default/site-src-tests-fixtures-website-blog-unlisted-md-5cb.json +18 -0
- package/.docusaurus/docusaurus-theme-search-algolia/default/plugin-route-context-module-100.json +4 -0
- package/.docusaurus/docusaurus.config.mjs +246 -0
- package/.docusaurus/globalData.json +1 -0
- package/.docusaurus/i18n.json +17 -0
- package/.docusaurus/registry.js +38 -0
- package/.docusaurus/routes.js +99 -0
- package/.docusaurus/routesChunkNames.json +194 -0
- package/.docusaurus/site-metadata.json +24 -0
- package/lib/feed.js +32 -5
- package/lib/options.js +4 -1
- package/package.json +16 -14
- package/src/feed.ts +41 -5
- package/src/options.ts +4 -1
- package/src/plugin-content-blog.d.ts +2 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permalink": "/blog-only/mdx-blog-post",
|
|
3
|
+
"editUrl": "https://github.com/facebook/docusaurus/edit/main/website/src/__tests__/__fixtures__/website/blog/mdx-blog-post.mdx",
|
|
4
|
+
"source": "@site/src/__tests__/__fixtures__/website/blog/mdx-blog-post.mdx",
|
|
5
|
+
"title": "Full Blog Sample",
|
|
6
|
+
"description": "HTML Heading 1",
|
|
7
|
+
"date": "2021-03-05T00:00:00.000Z",
|
|
8
|
+
"formattedDate": "March 5, 2021",
|
|
9
|
+
"tags": [],
|
|
10
|
+
"readingTime": 0.245,
|
|
11
|
+
"hasTruncateMarker": false,
|
|
12
|
+
"authors": [],
|
|
13
|
+
"frontMatter": {
|
|
14
|
+
"title": "Full Blog Sample",
|
|
15
|
+
"date": "2021-03-05T00:00:00.000Z"
|
|
16
|
+
},
|
|
17
|
+
"unlisted": false,
|
|
18
|
+
"prevItem": {
|
|
19
|
+
"title": "MDX Blog Sample with require calls",
|
|
20
|
+
"permalink": "/blog-only/mdx-require-blog-post"
|
|
21
|
+
},
|
|
22
|
+
"nextItem": {
|
|
23
|
+
"title": "Complex Slug",
|
|
24
|
+
"permalink": "/blog-only/hey/my super path/héllô"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permalink": "/blog-only/mdx-require-blog-post",
|
|
3
|
+
"editUrl": "https://github.com/facebook/docusaurus/edit/main/website/src/__tests__/__fixtures__/website/blog/mdx-require-blog-post.mdx",
|
|
4
|
+
"source": "@site/src/__tests__/__fixtures__/website/blog/mdx-require-blog-post.mdx",
|
|
5
|
+
"title": "MDX Blog Sample with require calls",
|
|
6
|
+
"description": "Test MDX with require calls",
|
|
7
|
+
"date": "2021-03-06T00:00:00.000Z",
|
|
8
|
+
"formattedDate": "March 6, 2021",
|
|
9
|
+
"tags": [],
|
|
10
|
+
"readingTime": 0.09,
|
|
11
|
+
"hasTruncateMarker": false,
|
|
12
|
+
"authors": [],
|
|
13
|
+
"frontMatter": {
|
|
14
|
+
"title": "MDX Blog Sample with require calls",
|
|
15
|
+
"date": "2021-03-06T00:00:00.000Z"
|
|
16
|
+
},
|
|
17
|
+
"unlisted": false,
|
|
18
|
+
"prevItem": {
|
|
19
|
+
"title": "test links",
|
|
20
|
+
"permalink": "/blog-only/blog-with-links"
|
|
21
|
+
},
|
|
22
|
+
"nextItem": {
|
|
23
|
+
"title": "Full Blog Sample",
|
|
24
|
+
"permalink": "/blog-only/mdx-blog-post"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permalink": "/blog-only/simple/slug",
|
|
3
|
+
"editUrl": "https://github.com/facebook/docusaurus/edit/main/website/src/__tests__/__fixtures__/website/blog/simple-slug.md",
|
|
4
|
+
"source": "@site/src/__tests__/__fixtures__/website/blog/simple-slug.md",
|
|
5
|
+
"title": "Simple Slug",
|
|
6
|
+
"description": "simple url slug",
|
|
7
|
+
"date": "2020-08-15T00:00:00.000Z",
|
|
8
|
+
"formattedDate": "August 15, 2020",
|
|
9
|
+
"tags": [],
|
|
10
|
+
"readingTime": 0.015,
|
|
11
|
+
"hasTruncateMarker": false,
|
|
12
|
+
"authors": [
|
|
13
|
+
{
|
|
14
|
+
"name": "Sébastien Lorber",
|
|
15
|
+
"title": "Docusaurus maintainer",
|
|
16
|
+
"url": "https://sebastienlorber.com"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"frontMatter": {
|
|
20
|
+
"slug": "/simple/slug",
|
|
21
|
+
"title": "Simple Slug",
|
|
22
|
+
"date": "2020-08-15T00:00:00.000Z",
|
|
23
|
+
"author": "Sébastien Lorber",
|
|
24
|
+
"author_title": "Docusaurus maintainer",
|
|
25
|
+
"author_url": "https://sebastienlorber.com"
|
|
26
|
+
},
|
|
27
|
+
"unlisted": false,
|
|
28
|
+
"prevItem": {
|
|
29
|
+
"title": "Complex Slug",
|
|
30
|
+
"permalink": "/blog-only/hey/my super path/héllô"
|
|
31
|
+
},
|
|
32
|
+
"nextItem": {
|
|
33
|
+
"title": "some heading",
|
|
34
|
+
"permalink": "/blog-only/heading-as-title"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permalink": "/blog-only/unlisted",
|
|
3
|
+
"editUrl": "https://github.com/facebook/docusaurus/edit/main/website/src/__tests__/__fixtures__/website/blog/unlisted.md",
|
|
4
|
+
"source": "@site/src/__tests__/__fixtures__/website/blog/unlisted.md",
|
|
5
|
+
"title": "unlisted",
|
|
6
|
+
"description": "this post is unlisted",
|
|
7
|
+
"date": "2020-02-27T00:00:00.000Z",
|
|
8
|
+
"formattedDate": "February 27, 2020",
|
|
9
|
+
"tags": [],
|
|
10
|
+
"readingTime": 0.02,
|
|
11
|
+
"hasTruncateMarker": false,
|
|
12
|
+
"authors": [],
|
|
13
|
+
"frontMatter": {
|
|
14
|
+
"date": "2020-02-27T00:00:00.000Z",
|
|
15
|
+
"unlisted": true
|
|
16
|
+
},
|
|
17
|
+
"unlisted": true
|
|
18
|
+
}
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* AUTOGENERATED - DON'T EDIT
|
|
3
|
+
* Your edits in this file will be overwritten in the next build!
|
|
4
|
+
* Modify the docusaurus.config.js file at your site's root instead.
|
|
5
|
+
*/
|
|
6
|
+
export default {
|
|
7
|
+
"title": "Docusaurus blog only!",
|
|
8
|
+
"tagline": "Build optimized websites quickly, focus on your content",
|
|
9
|
+
"organizationName": "facebook",
|
|
10
|
+
"projectName": "docusaurus",
|
|
11
|
+
"baseUrl": "/blog-only/",
|
|
12
|
+
"url": "https://docusaurus.io",
|
|
13
|
+
"onBrokenLinks": "warn",
|
|
14
|
+
"onBrokenMarkdownLinks": "warn",
|
|
15
|
+
"favicon": "img/docusaurus.ico",
|
|
16
|
+
"presets": [
|
|
17
|
+
[
|
|
18
|
+
"classic",
|
|
19
|
+
{
|
|
20
|
+
"docs": false,
|
|
21
|
+
"pages": false,
|
|
22
|
+
"blog": {
|
|
23
|
+
"routeBasePath": "/",
|
|
24
|
+
"path": "/Users/sebastienlorber/Desktop/projects/docusaurus/packages/docusaurus-plugin-content-blog/src/__tests__/__fixtures__/website/blog",
|
|
25
|
+
"editUrl": "https://github.com/facebook/docusaurus/edit/main/website/",
|
|
26
|
+
"postsPerPage": 3,
|
|
27
|
+
"feedOptions": {
|
|
28
|
+
"type": "all",
|
|
29
|
+
"copyright": "Copyright © 2023 Facebook, Inc."
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
],
|
|
35
|
+
"themeConfig": {
|
|
36
|
+
"image": "img/docusaurus-social-card.jpg",
|
|
37
|
+
"algolia": {
|
|
38
|
+
"appId": "X1Z85QJPUV",
|
|
39
|
+
"apiKey": "bf7211c161e8205da2f933a02534105a",
|
|
40
|
+
"indexName": "docusaurus-2",
|
|
41
|
+
"contextualSearch": true,
|
|
42
|
+
"searchParameters": {},
|
|
43
|
+
"searchPagePath": "search"
|
|
44
|
+
},
|
|
45
|
+
"navbar": {
|
|
46
|
+
"hideOnScroll": true,
|
|
47
|
+
"title": "Docusaurus",
|
|
48
|
+
"logo": {
|
|
49
|
+
"alt": "Docusaurus Logo",
|
|
50
|
+
"src": "img/docusaurus.svg",
|
|
51
|
+
"srcDark": "img/docusaurus_keytar.svg"
|
|
52
|
+
},
|
|
53
|
+
"items": []
|
|
54
|
+
},
|
|
55
|
+
"colorMode": {
|
|
56
|
+
"defaultMode": "light",
|
|
57
|
+
"disableSwitch": false,
|
|
58
|
+
"respectPrefersColorScheme": false
|
|
59
|
+
},
|
|
60
|
+
"docs": {
|
|
61
|
+
"versionPersistence": "localStorage",
|
|
62
|
+
"sidebar": {
|
|
63
|
+
"hideable": false,
|
|
64
|
+
"autoCollapseCategories": false
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"metadata": [],
|
|
68
|
+
"prism": {
|
|
69
|
+
"additionalLanguages": [],
|
|
70
|
+
"theme": {
|
|
71
|
+
"plain": {
|
|
72
|
+
"color": "#bfc7d5",
|
|
73
|
+
"backgroundColor": "#292d3e"
|
|
74
|
+
},
|
|
75
|
+
"styles": [
|
|
76
|
+
{
|
|
77
|
+
"types": [
|
|
78
|
+
"comment"
|
|
79
|
+
],
|
|
80
|
+
"style": {
|
|
81
|
+
"color": "rgb(105, 112, 152)",
|
|
82
|
+
"fontStyle": "italic"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"types": [
|
|
87
|
+
"string",
|
|
88
|
+
"inserted"
|
|
89
|
+
],
|
|
90
|
+
"style": {
|
|
91
|
+
"color": "rgb(195, 232, 141)"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"types": [
|
|
96
|
+
"number"
|
|
97
|
+
],
|
|
98
|
+
"style": {
|
|
99
|
+
"color": "rgb(247, 140, 108)"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"types": [
|
|
104
|
+
"builtin",
|
|
105
|
+
"char",
|
|
106
|
+
"constant",
|
|
107
|
+
"function"
|
|
108
|
+
],
|
|
109
|
+
"style": {
|
|
110
|
+
"color": "rgb(130, 170, 255)"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"types": [
|
|
115
|
+
"punctuation",
|
|
116
|
+
"selector"
|
|
117
|
+
],
|
|
118
|
+
"style": {
|
|
119
|
+
"color": "rgb(199, 146, 234)"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"types": [
|
|
124
|
+
"variable"
|
|
125
|
+
],
|
|
126
|
+
"style": {
|
|
127
|
+
"color": "rgb(191, 199, 213)"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"types": [
|
|
132
|
+
"class-name",
|
|
133
|
+
"attr-name"
|
|
134
|
+
],
|
|
135
|
+
"style": {
|
|
136
|
+
"color": "rgb(255, 203, 107)"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"types": [
|
|
141
|
+
"tag",
|
|
142
|
+
"deleted"
|
|
143
|
+
],
|
|
144
|
+
"style": {
|
|
145
|
+
"color": "rgb(255, 85, 114)"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"types": [
|
|
150
|
+
"operator"
|
|
151
|
+
],
|
|
152
|
+
"style": {
|
|
153
|
+
"color": "rgb(137, 221, 255)"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"types": [
|
|
158
|
+
"boolean"
|
|
159
|
+
],
|
|
160
|
+
"style": {
|
|
161
|
+
"color": "rgb(255, 88, 116)"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"types": [
|
|
166
|
+
"keyword"
|
|
167
|
+
],
|
|
168
|
+
"style": {
|
|
169
|
+
"fontStyle": "italic"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"types": [
|
|
174
|
+
"doctype"
|
|
175
|
+
],
|
|
176
|
+
"style": {
|
|
177
|
+
"color": "rgb(199, 146, 234)",
|
|
178
|
+
"fontStyle": "italic"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"types": [
|
|
183
|
+
"namespace"
|
|
184
|
+
],
|
|
185
|
+
"style": {
|
|
186
|
+
"color": "rgb(178, 204, 214)"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"types": [
|
|
191
|
+
"url"
|
|
192
|
+
],
|
|
193
|
+
"style": {
|
|
194
|
+
"color": "rgb(221, 221, 221)"
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
"magicComments": [
|
|
200
|
+
{
|
|
201
|
+
"className": "theme-code-block-highlighted-line",
|
|
202
|
+
"line": "highlight-next-line",
|
|
203
|
+
"block": {
|
|
204
|
+
"start": "highlight-start",
|
|
205
|
+
"end": "highlight-end"
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
]
|
|
209
|
+
},
|
|
210
|
+
"tableOfContents": {
|
|
211
|
+
"minHeadingLevel": 2,
|
|
212
|
+
"maxHeadingLevel": 3
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"baseUrlIssueBanner": true,
|
|
216
|
+
"i18n": {
|
|
217
|
+
"defaultLocale": "en",
|
|
218
|
+
"path": "i18n",
|
|
219
|
+
"locales": [
|
|
220
|
+
"en"
|
|
221
|
+
],
|
|
222
|
+
"localeConfigs": {}
|
|
223
|
+
},
|
|
224
|
+
"onDuplicateRoutes": "warn",
|
|
225
|
+
"staticDirectories": [
|
|
226
|
+
"static"
|
|
227
|
+
],
|
|
228
|
+
"customFields": {},
|
|
229
|
+
"plugins": [],
|
|
230
|
+
"themes": [],
|
|
231
|
+
"scripts": [],
|
|
232
|
+
"headTags": [],
|
|
233
|
+
"stylesheets": [],
|
|
234
|
+
"clientModules": [],
|
|
235
|
+
"titleDelimiter": "|",
|
|
236
|
+
"noIndex": false,
|
|
237
|
+
"markdown": {
|
|
238
|
+
"format": "mdx",
|
|
239
|
+
"mermaid": false,
|
|
240
|
+
"mdx1Compat": {
|
|
241
|
+
"comments": true,
|
|
242
|
+
"admonitions": true,
|
|
243
|
+
"headingIds": true
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"defaultLocale": "en",
|
|
3
|
+
"locales": [
|
|
4
|
+
"en"
|
|
5
|
+
],
|
|
6
|
+
"path": "i18n",
|
|
7
|
+
"currentLocale": "en",
|
|
8
|
+
"localeConfigs": {
|
|
9
|
+
"en": {
|
|
10
|
+
"label": "English",
|
|
11
|
+
"direction": "ltr",
|
|
12
|
+
"htmlLang": "en",
|
|
13
|
+
"calendar": "gregory",
|
|
14
|
+
"path": "en"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"01a85c17": [() => import(/* webpackChunkName: "01a85c17" */ "@theme/BlogTagsListPage"), "@theme/BlogTagsListPage", require.resolveWeak("@theme/BlogTagsListPage")],
|
|
3
|
+
"025bf2bf": [() => import(/* webpackChunkName: "025bf2bf" */ "@site/src/__tests__/__fixtures__/website/blog/mdx-blog-post.mdx"), "@site/src/__tests__/__fixtures__/website/blog/mdx-blog-post.mdx", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/mdx-blog-post.mdx")],
|
|
4
|
+
"0cc99ed5": [() => import(/* webpackChunkName: "0cc99ed5" */ "~blog/default/blog-only-tags-birthday-c96.json"), "~blog/default/blog-only-tags-birthday-c96.json", require.resolveWeak("~blog/default/blog-only-tags-birthday-c96.json")],
|
|
5
|
+
"10c8a0c7": [() => import(/* webpackChunkName: "10c8a0c7" */ "@site/src/__tests__/__fixtures__/website/blog/heading-as-title.md"), "@site/src/__tests__/__fixtures__/website/blog/heading-as-title.md", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/heading-as-title.md")],
|
|
6
|
+
"163f190c": [() => import(/* webpackChunkName: "163f190c" */ "~blog/default/blog-only-aeb.json"), "~blog/default/blog-only-aeb.json", require.resolveWeak("~blog/default/blog-only-aeb.json")],
|
|
7
|
+
"1910f98c": [() => import(/* webpackChunkName: "1910f98c" */ "@site/src/__tests__/__fixtures__/website/blog/date-matter.md"), "@site/src/__tests__/__fixtures__/website/blog/date-matter.md", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/date-matter.md")],
|
|
8
|
+
"1a450a71": [() => import(/* webpackChunkName: "1a450a71" */ "/Users/sebastienlorber/Desktop/projects/docusaurus/packages/docusaurus-plugin-content-blog/.docusaurus/docusaurus-plugin-content-blog/default/plugin-route-context-module-100.json"), "/Users/sebastienlorber/Desktop/projects/docusaurus/packages/docusaurus-plugin-content-blog/.docusaurus/docusaurus-plugin-content-blog/default/plugin-route-context-module-100.json", require.resolveWeak("/Users/sebastienlorber/Desktop/projects/docusaurus/packages/docusaurus-plugin-content-blog/.docusaurus/docusaurus-plugin-content-blog/default/plugin-route-context-module-100.json")],
|
|
9
|
+
"1a4e3797": [() => import(/* webpackChunkName: "1a4e3797" */ "@theme/SearchPage"), "@theme/SearchPage", require.resolveWeak("@theme/SearchPage")],
|
|
10
|
+
"1b99ff01": [() => import(/* webpackChunkName: "1b99ff01" */ "~blog/default/blog-only-tags-complex-cf3.json"), "~blog/default/blog-only-tags-complex-cf3.json", require.resolveWeak("~blog/default/blog-only-tags-complex-cf3.json")],
|
|
11
|
+
"2d0e482b": [() => import(/* webpackChunkName: "2d0e482b" */ "@site/src/__tests__/__fixtures__/website/blog/simple-slug.md?truncated=true"), "@site/src/__tests__/__fixtures__/website/blog/simple-slug.md?truncated=true", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/simple-slug.md?truncated=true")],
|
|
12
|
+
"31456d57": [() => import(/* webpackChunkName: "31456d57" */ "@site/src/__tests__/__fixtures__/website/blog/complex-slug.md"), "@site/src/__tests__/__fixtures__/website/blog/complex-slug.md", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/complex-slug.md")],
|
|
13
|
+
"324f81e8": [() => import(/* webpackChunkName: "324f81e8" */ "@site/src/__tests__/__fixtures__/website/blog/simple-slug.md"), "@site/src/__tests__/__fixtures__/website/blog/simple-slug.md", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/simple-slug.md")],
|
|
14
|
+
"3401dd63": [() => import(/* webpackChunkName: "3401dd63" */ "~blog/default/blog-only-page-2-d48.json"), "~blog/default/blog-only-page-2-d48.json", require.resolveWeak("~blog/default/blog-only-page-2-d48.json")],
|
|
15
|
+
"3cdbedcf": [() => import(/* webpackChunkName: "3cdbedcf" */ "@site/src/__tests__/__fixtures__/website/blog/mdx-blog-post.mdx?truncated=true"), "@site/src/__tests__/__fixtures__/website/blog/mdx-blog-post.mdx?truncated=true", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/mdx-blog-post.mdx?truncated=true")],
|
|
16
|
+
"447a0fe3": [() => import(/* webpackChunkName: "447a0fe3" */ "~blog/default/blog-only-tags-date-c24-list.json"), "~blog/default/blog-only-tags-date-c24-list.json", require.resolveWeak("~blog/default/blog-only-tags-date-c24-list.json")],
|
|
17
|
+
"44bf5914": [() => import(/* webpackChunkName: "44bf5914" */ "~blog/default/blog-only-tags-birthday-c96-list.json"), "~blog/default/blog-only-tags-birthday-c96-list.json", require.resolveWeak("~blog/default/blog-only-tags-birthday-c96-list.json")],
|
|
18
|
+
"4baa0397": [() => import(/* webpackChunkName: "4baa0397" */ "@site/src/__tests__/__fixtures__/website/blog/mdx-require-blog-post.mdx"), "@site/src/__tests__/__fixtures__/website/blog/mdx-require-blog-post.mdx", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/mdx-require-blog-post.mdx")],
|
|
19
|
+
"59ce4a4b": [() => import(/* webpackChunkName: "59ce4a4b" */ "~blog/default/blog-only-tags-date-c24.json"), "~blog/default/blog-only-tags-date-c24.json", require.resolveWeak("~blog/default/blog-only-tags-date-c24.json")],
|
|
20
|
+
"5bd9aa47": [() => import(/* webpackChunkName: "5bd9aa47" */ "@site/src/__tests__/__fixtures__/website/blog/mdx-require-blog-post.mdx?truncated=true"), "@site/src/__tests__/__fixtures__/website/blog/mdx-require-blog-post.mdx?truncated=true", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/mdx-require-blog-post.mdx?truncated=true")],
|
|
21
|
+
"5cb65b8e": [() => import(/* webpackChunkName: "5cb65b8e" */ "@site/src/__tests__/__fixtures__/website/blog/unlisted.md"), "@site/src/__tests__/__fixtures__/website/blog/unlisted.md", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/unlisted.md")],
|
|
22
|
+
"6875c492": [() => import(/* webpackChunkName: "6875c492" */ "@theme/BlogTagsPostsPage"), "@theme/BlogTagsPostsPage", require.resolveWeak("@theme/BlogTagsPostsPage")],
|
|
23
|
+
"69ddce25": [() => import(/* webpackChunkName: "69ddce25" */ "@site/src/__tests__/__fixtures__/website/blog/2018-12-14-Happy-First-Birthday-Slash.md?truncated=true"), "@site/src/__tests__/__fixtures__/website/blog/2018-12-14-Happy-First-Birthday-Slash.md?truncated=true", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/2018-12-14-Happy-First-Birthday-Slash.md?truncated=true")],
|
|
24
|
+
"6dea708c": [() => import(/* webpackChunkName: "6dea708c" */ "@site/src/__tests__/__fixtures__/website/blog/blog-with-links.mdx?truncated=true"), "@site/src/__tests__/__fixtures__/website/blog/blog-with-links.mdx?truncated=true", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/blog-with-links.mdx?truncated=true")],
|
|
25
|
+
"6fa419d5": [() => import(/* webpackChunkName: "6fa419d5" */ "~blog/default/blog-only-tags-tags-344.json"), "~blog/default/blog-only-tags-tags-344.json", require.resolveWeak("~blog/default/blog-only-tags-tags-344.json")],
|
|
26
|
+
"7050df0f": [() => import(/* webpackChunkName: "7050df0f" */ "@site/src/__tests__/__fixtures__/website/blog/date-matter.md?truncated=true"), "@site/src/__tests__/__fixtures__/website/blog/date-matter.md?truncated=true", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/date-matter.md?truncated=true")],
|
|
27
|
+
"814f3328": [() => import(/* webpackChunkName: "814f3328" */ "~blog/default/blog-post-list-prop-default.json"), "~blog/default/blog-post-list-prop-default.json", require.resolveWeak("~blog/default/blog-post-list-prop-default.json")],
|
|
28
|
+
"84412660": [() => import(/* webpackChunkName: "84412660" */ "~blog/default/blog-only-page-3-8b6.json"), "~blog/default/blog-only-page-3-8b6.json", require.resolveWeak("~blog/default/blog-only-page-3-8b6.json")],
|
|
29
|
+
"8941cadf": [() => import(/* webpackChunkName: "8941cadf" */ "~blog/default/blog-only-archive-245.json"), "~blog/default/blog-only-archive-245.json", require.resolveWeak("~blog/default/blog-only-archive-245.json")],
|
|
30
|
+
"8f113c1e": [() => import(/* webpackChunkName: "8f113c1e" */ "@site/src/__tests__/__fixtures__/website/blog/complex-slug.md?truncated=true"), "@site/src/__tests__/__fixtures__/website/blog/complex-slug.md?truncated=true", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/complex-slug.md?truncated=true")],
|
|
31
|
+
"90fdef38": [() => import(/* webpackChunkName: "90fdef38" */ "/Users/sebastienlorber/Desktop/projects/docusaurus/packages/docusaurus-plugin-content-blog/.docusaurus/docusaurus-theme-search-algolia/default/plugin-route-context-module-100.json"), "/Users/sebastienlorber/Desktop/projects/docusaurus/packages/docusaurus-plugin-content-blog/.docusaurus/docusaurus-theme-search-algolia/default/plugin-route-context-module-100.json", require.resolveWeak("/Users/sebastienlorber/Desktop/projects/docusaurus/packages/docusaurus-plugin-content-blog/.docusaurus/docusaurus-theme-search-algolia/default/plugin-route-context-module-100.json")],
|
|
32
|
+
"9e4087bc": [() => import(/* webpackChunkName: "9e4087bc" */ "@theme/BlogArchivePage"), "@theme/BlogArchivePage", require.resolveWeak("@theme/BlogArchivePage")],
|
|
33
|
+
"a6aa9e1f": [() => import(/* webpackChunkName: "a6aa9e1f" */ "@theme/BlogListPage"), "@theme/BlogListPage", require.resolveWeak("@theme/BlogListPage")],
|
|
34
|
+
"b5733902": [() => import(/* webpackChunkName: "b5733902" */ "~blog/default/blog-only-tags-complex-cf3-list.json"), "~blog/default/blog-only-tags-complex-cf3-list.json", require.resolveWeak("~blog/default/blog-only-tags-complex-cf3-list.json")],
|
|
35
|
+
"ccc49370": [() => import(/* webpackChunkName: "ccc49370" */ "@theme/BlogPostPage"), "@theme/BlogPostPage", require.resolveWeak("@theme/BlogPostPage")],
|
|
36
|
+
"d1e647af": [() => import(/* webpackChunkName: "d1e647af" */ "@site/src/__tests__/__fixtures__/website/blog/2018-12-14-Happy-First-Birthday-Slash.md"), "@site/src/__tests__/__fixtures__/website/blog/2018-12-14-Happy-First-Birthday-Slash.md", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/2018-12-14-Happy-First-Birthday-Slash.md")],
|
|
37
|
+
"fa937875": [() => import(/* webpackChunkName: "fa937875" */ "@site/src/__tests__/__fixtures__/website/blog/heading-as-title.md?truncated=true"), "@site/src/__tests__/__fixtures__/website/blog/heading-as-title.md?truncated=true", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/heading-as-title.md?truncated=true")],
|
|
38
|
+
"fe567c9f": [() => import(/* webpackChunkName: "fe567c9f" */ "@site/src/__tests__/__fixtures__/website/blog/blog-with-links.mdx"), "@site/src/__tests__/__fixtures__/website/blog/blog-with-links.mdx", require.resolveWeak("@site/src/__tests__/__fixtures__/website/blog/blog-with-links.mdx")],};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import ComponentCreator from '@docusaurus/ComponentCreator';
|
|
3
|
+
|
|
4
|
+
export default [
|
|
5
|
+
{
|
|
6
|
+
path: '/blog-only/2018/12/14/Happy-First-Birthday-Slash',
|
|
7
|
+
component: ComponentCreator('/blog-only/2018/12/14/Happy-First-Birthday-Slash', 'b2d'),
|
|
8
|
+
exact: true
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
path: '/blog-only/archive',
|
|
12
|
+
component: ComponentCreator('/blog-only/archive', '111'),
|
|
13
|
+
exact: true
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
path: '/blog-only/blog-with-links',
|
|
17
|
+
component: ComponentCreator('/blog-only/blog-with-links', 'b8a'),
|
|
18
|
+
exact: true
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
path: '/blog-only/date-matter',
|
|
22
|
+
component: ComponentCreator('/blog-only/date-matter', 'e95'),
|
|
23
|
+
exact: true
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
path: '/blog-only/heading-as-title',
|
|
27
|
+
component: ComponentCreator('/blog-only/heading-as-title', '01d'),
|
|
28
|
+
exact: true
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
path: '/blog-only/hey/my super path/héllô',
|
|
32
|
+
component: ComponentCreator('/blog-only/hey/my super path/héllô', '71d'),
|
|
33
|
+
exact: true
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
path: '/blog-only/mdx-blog-post',
|
|
37
|
+
component: ComponentCreator('/blog-only/mdx-blog-post', '72e'),
|
|
38
|
+
exact: true
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
path: '/blog-only/mdx-require-blog-post',
|
|
42
|
+
component: ComponentCreator('/blog-only/mdx-require-blog-post', 'd01'),
|
|
43
|
+
exact: true
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
path: '/blog-only/page/2',
|
|
47
|
+
component: ComponentCreator('/blog-only/page/2', '0a4'),
|
|
48
|
+
exact: true
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
path: '/blog-only/page/3',
|
|
52
|
+
component: ComponentCreator('/blog-only/page/3', '070'),
|
|
53
|
+
exact: true
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
path: '/blog-only/search',
|
|
57
|
+
component: ComponentCreator('/blog-only/search', '043'),
|
|
58
|
+
exact: true
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
path: '/blog-only/simple/slug',
|
|
62
|
+
component: ComponentCreator('/blog-only/simple/slug', 'ff5'),
|
|
63
|
+
exact: true
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
path: '/blog-only/tags',
|
|
67
|
+
component: ComponentCreator('/blog-only/tags', '821'),
|
|
68
|
+
exact: true
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
path: '/blog-only/tags/birthday',
|
|
72
|
+
component: ComponentCreator('/blog-only/tags/birthday', '8e4'),
|
|
73
|
+
exact: true
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
path: '/blog-only/tags/complex',
|
|
77
|
+
component: ComponentCreator('/blog-only/tags/complex', 'f0f'),
|
|
78
|
+
exact: true
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
path: '/blog-only/tags/date',
|
|
82
|
+
component: ComponentCreator('/blog-only/tags/date', 'b36'),
|
|
83
|
+
exact: true
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
path: '/blog-only/unlisted',
|
|
87
|
+
component: ComponentCreator('/blog-only/unlisted', '8d8'),
|
|
88
|
+
exact: true
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
path: '/blog-only/',
|
|
92
|
+
component: ComponentCreator('/blog-only/', '813'),
|
|
93
|
+
exact: true
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
path: '*',
|
|
97
|
+
component: ComponentCreator('*'),
|
|
98
|
+
},
|
|
99
|
+
];
|