Skip to content

Commit 956ca03

Browse files
committed
fix(core): fix missing symbols edge case
1 parent ef4ce36 commit 956ca03

File tree

1 file changed

+4
-0
lines changed
  • packages/typedoc-plugin-markdown/src/theme/context/templates

1 file changed

+4
-0
lines changed

packages/typedoc-plugin-markdown/src/theme/context/templates/project.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ export function project(
5757
md.push(this.helpers.getGroupIndex(group));
5858
}
5959

60+
if (page.model.children?.some((child) => child.kind !== ReflectionKind.Module)) {
61+
md.push(this.partials.body(page.model, { headingLevel: 2 }));
62+
}
63+
6064
md.push(
6165
this.partials.reflectionIndex(page.model, {
6266
headingLevel: 2,

0 commit comments

Comments
 (0)