Skip to content

Commit 43b328c

Browse files
kavishkafernandoKavishka Fernando
andauthored
Fix google site link picking up OpenChoreo logo alt text as the heading (#682)
* fix google site link issue Signed-off-by: Kavishka Fernando <kavi@kavishka.local> * fix google site link issue Signed-off-by: Kavishka Fernando <kavi@kavishka.local> * revert quote formatting changes Signed-off-by: Kavishka Fernando <kavi@kavishka.local> --------- Signed-off-by: Kavishka Fernando <kavi@kavishka.local> Co-authored-by: Kavishka Fernando <kavi@kavishka.local>
1 parent e35ea4e commit 43b328c

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

docusaurus.config.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ const latestVersion = versions[0];
1111

1212
const config: Config = {
1313
title: 'OpenChoreo',
14-
tagline: 'A complete, open-source developer platform for Kubernetes, ready to use from day one, built to integrate with your stack.',
14+
tagline:
15+
'A complete, open-source developer platform for Kubernetes, ready to use from day one, built to integrate with your stack.',
1516
favicon: 'img/favicon.ico',
1617

1718
// Future flags, see https://docusaurus.io/docs/api/docusaurus-config#future
@@ -75,8 +76,7 @@ const config: Config = {
7576
existingPath.startsWith(`${versionedDocsPath}/`)
7677
);
7778
});
78-
const isLatestDocsPath =
79-
isDocsPath && !isVersionedDocsPath;
79+
const isLatestDocsPath = isDocsPath && !isVersionedDocsPath;
8080

8181
if (!isLatestDocsPath) return undefined;
8282

@@ -189,9 +189,7 @@ const config: Config = {
189189
},
190190
],
191191

192-
clientModules: [
193-
path.join(__dirname, 'src/clientModules/gtagGuard.ts'),
194-
],
192+
clientModules: [path.join(__dirname, 'src/clientModules/gtagGuard.ts')],
195193

196194
themeConfig: {
197195
announcementBar: {
@@ -223,7 +221,7 @@ const config: Config = {
223221
navbar: {
224222
title: 'OpenChoreo',
225223
logo: {
226-
alt: 'OpenChoreo Logo',
224+
alt: 'OpenChoreo',
227225
src: 'img/openchoreo-logo.svg',
228226
srcDark: 'img/openchoreo-logo-dark.svg',
229227
},
@@ -319,7 +317,7 @@ const config: Config = {
319317
},
320318
],
321319
},
322-
],
320+
],
323321
copyright: `Copyright © 2026 OpenChoreo Project Authors. All rights reserved.<br>The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage">Trademark Usage page</a>.`,
324322
},
325323
prism: {

0 commit comments

Comments
 (0)