typedoc2md / typedoc-plugin-markdown

A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.
https://typedoc-plugin-markdown.org
MIT License
714 stars 176 forks source link

navigation is missing nested entrypoints #663

Closed xixixao closed 1 month ago

xixixao commented 2 months ago

What package is the bug related to?

typedoc-plugin-markdown

Describe the issue

With the configuration shown below, I only get the parent entry point in MarkdownRendererEvent.navigation, not the child one, and it also doesn't show up in children either.

Screenshot 2024-08-01 at 16 15 20

TypeDoc configuration

{
  "entryPoints": [
    "../src/nextjs/index.tsx",
    "../src/nextjs/server/index.tsx",
  ],
}

Expected behavior

It should probably be included in children.

Btw the entry point config works fine and the page is generated, it's just not showing up in MarkdownRendererEvent.navigation.

tgreyuk commented 2 months ago

Thanks. Is your project on a public repo by an chance? (would be easier to debug).

xixixao commented 2 months ago

@tgreyuk yeah: https://github.com/get-convex/convex-auth (in the docs folder)

tgreyuk commented 2 months ago

Should now be fixed in typedoc-plugin-markdown@4.2.6.

It is included as a child of nexjs:

Screenshot 2024-08-25 at 10 00 48 Screenshot 2024-08-25 at 09 59 34