We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
canonicalizeTitlePostprocessor()
websiteNavigationExtras()
1 parent a63c82c commit 5f071f2Copy full SHA for 5f071f2
src/project/types/website/website.ts
@@ -230,10 +230,13 @@ export const websiteProjectType: ProjectType = {
230
project.dir,
231
),
232
233
+ ]);
234
+ // add postprocessors that needs to be before other extras.html
235
+ extras.html[kHtmlPostprocessors].unshift(
236
+ websiteDraftPostProcessor,
237
// Fix H1 title inconsistency
238
canonicalizeTitlePostprocessor,
- ]);
- extras.html[kHtmlPostprocessors].unshift(websiteDraftPostProcessor);
239
+ );
240
241
// listings extras
242
const hasBootstrap = formatHasBootstrap(format);
0 commit comments