Skip to content

Commit

Permalink
docs: Readme updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed May 15, 2021
1 parent 83e588f commit a572018
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/typedoc-github-wiki-theme/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ npm install typedoc typedoc-plugin-markdown typedoc-github-wiki-theme --save-dev
### Usage

```bash
$ npx typedoc --plugin typedoc-plugin-markdown --theme ./node_modules/typedoc-github-wiki-theme/dist [args]
$ npx typedoc --theme ./node_modules/typedoc-github-wiki-theme/dist [args]
```

## License
Expand Down
12 changes: 8 additions & 4 deletions packages/typedoc-plugin-markdown/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# typedoc-plugin-markdown

A plugin for [TypeDoc](https://github.com/TypeStrong/typedoc) that renders documentation as Markdown.
A plugin for [TypeDoc](https://github.com/TypeStrong/typedoc) that renders TypeScript API documentation as Markdown.

[![npm](https://img.shields.io/npm/v/typedoc-plugin-markdown.svg)](https://www.npmjs.com/package/typedoc-plugin-markdown)
[![Build Status](https://travis-ci.org/tgreyuk/typedoc-plugin-markdown.svg?branch=master)](https://travis-ci.org/tgreyuk/typedoc-plugin-markdown)
Expand All @@ -9,6 +9,8 @@ A plugin for [TypeDoc](https://github.com/TypeStrong/typedoc) that renders docum

The plugin replaces the default HTML theme with a built-in Markdown theme and exposes some additional options.

Useful if documentation is required to be included in project README files, Wikis and static site generators.

## Installation

```bash
Expand All @@ -17,14 +19,16 @@ npm install --save-dev typedoc typedoc-plugin-markdown

## Usage

Usage is the same as documented at [TypeDoc](https://typedoc.org/guides/installation/#command-line-interface).

```bash
$ npx typedoc ...options
typedoc --out docs src/index.ts
```

### Note:
**Note:**

- If using with the default HTML theme or other themes, use `--plugin none` to switch the plugin off.
- The plugin needs to be executed from the same location as TypeDoc. If running directly from command prompt make sure to use `npx`.
- The plugin should be executed in the same location as TypeDoc. Use `npx` if running command directly in shell.

## Options

Expand Down

0 comments on commit a572018

Please sign in to comment.