What package is the feature request related to?
typedoc-plugin-markdown
Background
I have multiple @example blocks for each type I've created. Each one has its own title using <caption>[title]</caption>. But when I generate the markdown, I see that the titles get ignored
* @example <caption>title for example</caption>
* type Result = ValueOf<{ a: string; b: number }>;
* // ^?
* // string | number
*
* @example <caption>title 2</caption>
* type Result = ValueOf<{ a: string; b: number; c: boolean }, "a" | "c">;
* // ^?
* // string | boolean
*
Proposed solution
This should be the result
Examples
title for example
type Result = ValueOf<{ a: string; b: number }>;
// ^?
// string | number
title 2
type Result = ValueOf<{ a: string; b: number; c: boolean }, "a" | "c">;
// ^?
// string | boolean
What package is the feature request related to?
typedoc-plugin-markdown
Background
I have multiple
@exampleblocks for each type I've created. Each one has its own title using<caption>[title]</caption>. But when I generate the markdown, I see that the titles get ignoredProposed solution
This should be the result
Examples
title for example
title 2