Skip to content

Commit 26ea2af

Browse files
committed
Add field tooltips to project grids #93
Reference: #93 Signed-off-by: johnmhoran <johnmhoran@gmail.com>
1 parent f839465 commit 26ea2af

5 files changed

Lines changed: 124 additions & 569 deletions

File tree

website/docusaurus.config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ const config = {
1616

1717
markdown: {
1818
format: 'detect', // Auto-detects: .md = plain Markdown (CommonMark), .mdx = MDX
19+
hooks: {
20+
onBrokenMarkdownLinks: 'warn', // This new setting surfaced in 3.9.
21+
},
1922
},
2023

2124
// Future flags, see https://docusaurus.io/docs/api/docusaurus-config#future
@@ -43,7 +46,9 @@ const config = {
4346
projectName: 'www.aboutcode.org',
4447

4548
onBrokenLinks: 'throw',
46-
onBrokenMarkdownLinks: 'warn',
49+
// 2026-02-11 Wednesday 10:26:31. The following is deprecated, to be removed in v4, replaced with similar structure above under 'markdown:'.
50+
// (New config was introduced in 3.9 -- https://docusaurus.io/blog/releases/3.9#:~:text=In%20%2311283%2C%20we%20added%20siteConfig,to%20make%20Docusaurus%20build%20faster.)
51+
// onBrokenMarkdownLinks: 'warn',
4752

4853
// Even if you don't use internationalization, you can use this field to set
4954
// useful metadata like html lang. For example, if your site is Chinese, you

0 commit comments

Comments
 (0)