GithubHelp home page GithubHelp logo

uenosy / typedoc-plugin-external-module-name Goto Github PK

View Code? Open in Web Editor NEW

This project forked from christopherthielen/typedoc-plugin-external-module-name

0.0 1.0 0.0 18 KB

Specify the Typedoc Module of a file using @module annotation

License: MIT License

JavaScript 8.82% TypeScript 91.18%

typedoc-plugin-external-module-name's Introduction

typedoc-plugin-external-module-name

What

A plugin for Typedoc

When using ES6 modules in Typedoc, each file gets its own listing in "External Modules", i.e., "Globals". This can be annoying, for projects that utilize one file per class, for instance.

Suppose your source files are organized like this:

thing1/foo.ts
thing1/bar.ts
thing2/baz.ts
thing2/qux.ts

Typedoc will create four "External Modules":

  • "thing1/foo"
  • "thing1/bar"
  • "thing2/baz"
  • "thing2/qux"

This plugin allows each file to specify the Typedoc External Module its code should belong to. If multiple files belong to the same module, they are merged.

This allows more control over the modules that Typedoc generates. Instead of the four modules above, we could group them into two:

  • thing1
  • thing2

Installing

Typedoc 0.4 has the ability to discover and load typedoc plugins found in node_modules. Simply install the plugin and run typedoc.

npm install --save typedoc-plugin-external-module-name
typedoc

Using

Add a comment block at the top of the file (ES6 module). Specify the Typedoc External Module using the @module annotation. A known issue: The comment block must be followed by another comment block for some reason (?).

thing1/foo.ts

/**
 * @module thing1
 */
/** second comment block */

// foo stuff

thing1/bar.ts

/**
 * @module thing1
 */ /** */

// bar stuff

thing2/baz.ts

/**
 * @module thing2
 */ /** */

// baz stuff

Multiple files may point to the same ES6 module. To specify the which file's comment block will be used to document the Typedoc Module page, use @preferred

thing2/qux.ts

/**
 * @module thing2
 * @preferred
 *
 * This comment will be used to document the "thing2" module.
 */ /** */

// qux stuff

typedoc-plugin-external-module-name's People

Contributors

christopherthielen avatar abettadapur avatar haraldf avatar

Watchers

Ueno Syogo avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.