This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
Releases: neplextech/typedoc-nextra
Releases · neplextech/typedoc-nextra
0.1.5
0.1.4
0.1.3
Changelog
- Add default links
- Enable types linker by default
- Fix generator
- Fix comments being cut off
- Fix example codeblock issue
- Remove description field when no description is available
Full Changelog: v0.1.2...v0.1.3
0.1.2
0.1.1
0.1.0
typedoc-nextra
Use TypeDoc with Nextra
Installation
yarn add typedoc-nextra
This tool was built for generating docs automatically to be used in nextra. However, it can be used elsewhere.
Output Directory Structure
- output/
- classes/
- module/
- class.mdx
- module/
- types/
- module/
- type.mdx
- module/
- custom/
- file.mdx
- classes/
Example
import { createDocumentation } from 'typedoc-nextra';
await createDocumentation({
// use existing typedoc json output (leave it blank to auto generate)
jsonInputPath: `${__dirname}/data.json`,
// output location
output: `${__dirname}/pages`,
// output markdown
markdown: true
});
Full Changelog: https://github.com/neplextech/typedoc-nextra/commits/v0.1.0