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.
1 parent 74921d5 commit 1d64ac2Copy full SHA for 1d64ac2
docusaurus/src/components/HeaderDecoration.jsx
@@ -85,7 +85,7 @@ export const HeaderDecoration = ({
85
<h1 id={originalId}>
86
{isArchived ? (
87
<span>
88
- {originalTitle} <span style={{ color: "red" }}>[ARCHIVED]</span>
+ {originalTitle} <span style={{ color: "gray" }}>[ARCHIVED]</span>
89
</span>
90
) : (
91
originalTitle
docusaurus/src/remark/utils.js
@@ -8,6 +8,11 @@ const isDocsPage = (vfile) => {
8
return false;
9
}
10
11
+ // skip the root files in integrations/source and integrations/destinations
12
+ if (vfile.path.includes("README.md")) {
13
+ return false;
14
+ }
15
+
16
if (vfile.path.includes("-migrations.md")) {
17
18
0 commit comments