typedoc-plugin-markdown
typedoc-plugin-markdown copied to clipboard
A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.
Update (some) deps, fix usage of an internal type TypeDoc function
I use the `vuepress-plugin-typedoc` plugin to generate the needed files for vuepress. The thing is I have a mono repo with packages inside them, which are independent of each other...
Adds an option to wrap the titles of functions, interfaces, enums, etc. in a code block. This helped us be able to break up the headings (especially when you have...
Thx again for the plugin. I see unclear "Type declaration" section inside markdown documentation:  that contains this: ``` (trueWeight?, falseWeight?): boolean ``` This code duplicates what is seen above:...
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically....
Hi, Currently we are using your project to create markdown files which we import in Docusaurus. But the title of the the pages is always `Type: TypeName`. For example: `Class:...
In our CI pipeline we were not able to caught an error in the building process Here are the final logs. We got the logs stating there are an error,...
Giving the following source code, ```ts export function fn( a: () => number, b: number, c: GetNum, ): void { console.log(a() + b + c()) } export type GetNum =...
Properties that have a function type, include a "Type Declaration" section that I would like to omit. Even though it's a function value, it's first and foremost a property, and...
The following generated markdown will result in an error while using the plugin with Docusarus 3 and MDX 3. ``` > **new View**( ``` Probably need to escape these, The...