Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Releases: neplextech/typedoc-nextra

0.1.5

07 Apr 07:42
Compare
Choose a tag to compare

Changelog

  • Fix module resolution

Full Changelog: v0.1.3...v0.1.5

0.1.4

07 Apr 07:41
Compare
Choose a tag to compare

Changelog

  • Function output generator
  • Updated linker

0.1.3

05 Apr 13:28
Compare
Choose a tag to compare

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

24 Jan 15:11
Compare
Choose a tag to compare

Changes

  • fix: project checking

Full Changelog: v0.1.1...v0.1.2

0.1.1

24 Jan 14:18
Compare
Choose a tag to compare

Changes

  • fix: custom file ext

Full Changelog: v0.1.0...v0.1.1

0.1.0

24 Jan 12:51
Compare
Choose a tag to compare

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
    • types/
      • module/
        • type.mdx
    • custom/
      • file.mdx

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