Skip to content

Releases: shuding/nextra

[email protected]

02 Oct 14:50
7b2e222

Choose a tag to compare

[email protected]

02 Oct 14:50
7b2e222

Choose a tag to compare

Minor Changes

  • e1d0ebd: Support disabling the "Copy Page" button through the theme.copyPage
    setting in _meta files

Patch Changes

[email protected]

02 Oct 14:50
7b2e222

Choose a tag to compare

[email protected]

27 Sep 16:37
99a5e65

Choose a tag to compare

Patch Changes

  • 8a4d176: fix TSDoc @inline tag to properly expand nested type aliases

[email protected]

27 Sep 16:37
99a5e65

Choose a tag to compare

Patch Changes

[email protected]

27 Sep 16:37
99a5e65

Choose a tag to compare

Patch Changes

[email protected]

21 Sep 16:08
c6912e2

Choose a tag to compare

Minor Changes

  • 356a782: fix copy page button does not return the correct page contents due to
    cached MDX compiler

    add a copyPageButton layout prop which show/hide copy page content button

[email protected]

21 Sep 16:08
c6912e2

Choose a tag to compare

Minor Changes

  • 356a782: fix copy page button does not return the correct page contents due to
    cached MDX compiler

    add a copyPageButton layout prop which show/hide copy page content button

Patch Changes

[email protected]

21 Sep 16:08
c6912e2

Choose a tag to compare

Patch Changes

[email protected]

22 Aug 09:43
c72653b

Choose a tag to compare

Minor Changes

  • 26b1281: feat: add Copy Documentation button/dropdown feature as LLM-Optimized
    Prompt

    Note

    If you are using
    content directory,
    you must pass the sourceCode prop to enable this feature.

    const {
      default: MDXContent,
      toc,
      metadata,
    + sourceCode
    } = await importPage(params.mdxPath)
    return (
    - <Wrapper toc={toc} metadata={metadata}>
    + <Wrapper toc={toc} metadata={metadata} sourceCode={sourceCode}>
        <MDXContent {...props} params={params} />
      </Wrapper>
    )