Skip to content

Commit 6945f38

Browse files
authoredAug 21, 2024··
[v3] fix not rendered default <meta name="description" /> and <meta property="og:description" /> (#3133)
* aa * prettier
1 parent 19dbcc8 commit 6945f38

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed
 

‎.changeset/light-bats-sin.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'nextra-theme-docs': patch
3+
---
4+
5+
fix not rendered default `<meta name="description" />` and `<meta property="og:description" />`

‎docs/pages/docs/guide/built-ins/filetree.mdx

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ Click the folder to test the dynamic functionality of the file tree.
2323

2424
## Usage
2525

26-
Create the file tree structure by nesting `<FileTree.Folder>` and `<FileTree.File>` components within a `<FileTree>`. Name each file or folder with the `name` attribute. Use `defaultOpen` to set the folder to open on load.
26+
Create the file tree structure by nesting `<FileTree.Folder>` and
27+
`<FileTree.File>` components within a `<FileTree>`. Name each file or folder
28+
with the `name` attribute. Use `defaultOpen` to set the folder to open on load.
2729

2830
```mdx filename="MDX"
2931
import { FileTree } from 'nextra/components'

‎packages/nextra-theme-docs/src/constants.tsx

+5-6
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,11 @@ export const DEFAULT_THEME: DocsThemeConfig = {
118118
<>
119119
<title>{title}</title>
120120
<meta property="og:title" content={title} />
121-
{description && (
122-
<>
123-
<meta name="description" content={description} />
124-
<meta property="og:description" content={description} />
125-
</>
126-
)}
121+
{/* We can't use React.Fragment https://nextjs.org/docs/pages/api-reference/components/head#use-minimal-nesting https://github.com/vercel/next.js/pull/67667 */}
122+
{description && [
123+
<meta key={0} name="description" content={description} />,
124+
<meta key={1} property="og:description" content={description} />
125+
]}
127126
{canonical && <link rel="canonical" href={canonical} />}
128127
{image && <meta name="og:image" content={image} />}
129128
</>

0 commit comments

Comments
 (0)
Please sign in to comment.