Open Huxpro opened 2 weeks ago
typedoc-plugin-markdown
The source code is something like
interface ButtonProps; interface ButtonRef; export function Button (){..}; export type { ButtonProps, ButtonRef };
It was correctly generating Function prior to interfaces. But when hideGroupHeadings: true is present. The groupHeading doesn't seem to be respected.
Function
interfaces
hideGroupHeadings: true
groupHeading
See the generated catelog:
groupOrder: ['Function', 'Interface', '*'], outputFileStrategy: 'modules', hideGroupHeadings: true,
groupOrder is still respected when hideGroupHeading is given true
hideGroupHeading
What package is the bug related to?
typedoc-plugin-markdown
Describe the issue
The source code is something like
It was correctly generating
Function
prior tointerfaces
. But whenhideGroupHeadings: true
is present. ThegroupHeading
doesn't seem to be respected.See the generated catelog:
TypeDoc configuration
Expected behavior
groupOrder is still respected when
hideGroupHeading
is given true