Closed xixixao closed 2 months ago
Also btw it might be nice to give ppl some online playground (codepen or something) for easily sharing repros of issues.
Actually I can't use the workaround, because that breaks type lints that check whether a method is bound or not.
Fix in typedoc-plugin-markdown@4.2.5 .
Also btw it might be nice to give ppl some online playground (codepen or something) for easily sharing repros of issues.
Thanks - yes that is not a bad idea.
Fix in typedoc-plugin-markdown@4.2.5 .
Also btw it might be nice to give ppl some online playground (codepen or something) for easily sharing repros of issues.
Thanks - yes that is not a bad idea.
Thanks!
However method description in index files still not output
@Artemeey thanks - this is now fixed in typedoc-plugin-markdown@4.2.6
@Artemeey thanks - this is now fixed in typedoc-plugin-markdown@4.2.6
It's work!
But not all of them, example:
/**
* Info
*/
export const exampleWork = (): void => { }; // exists description in index
/**
* Info
* @return info
*/
export const exampleNoWork = (): void => { }; // no exists description in index
But not all of them, example:
Ah - you are right - thanks. Will be fixed in next release.
@Artemeey All issues should be resolved in Please try typedoc-plugin-markdown@4.2.7
@Artemeey All issues should be resolved in Please try typedoc-plugin-markdown@4.2.7
It works, thanks!
What package is the bug related to?
typedoc-plugin-markdown
Describe the issue
Works:
Doesn't work:
In my case I don't need the arrow syntax, so I have a workaround, but it seems like a bug.
I verified this is a bug in this plugin and not in typedoc.
TypeDoc configuration
Latest everything.
Expected behavior
No response