typedoc-plugin-markdown icon indicating copy to clipboard operation
typedoc-plugin-markdown copied to clipboard

A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.

Results 90 typedoc-plugin-markdown issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

next

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: ![image](https://user-images.githubusercontent.com/70687432/188361298-c9d1e241-f01b-4719-a79c-4755c5905909.png) 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:...

next

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 =...

next

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...

next

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...