forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMarkdownAction.ts
More file actions
26 lines (22 loc) · 1.06 KB
/
MarkdownAction.ts
File metadata and controls
26 lines (22 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import { ApiDocumenterCommandLine } from './ApiDocumenterCommandLine';
import { BaseAction } from './BaseAction';
import { MarkdownDocumenter } from '../documenters/MarkdownDocumenter';
import { ApiModel } from '@microsoft/api-extractor-model';
export class MarkdownAction extends BaseAction {
public constructor(parser: ApiDocumenterCommandLine) {
super({
actionName: 'markdown',
summary: 'Generate documentation as Markdown files (*.md)',
documentation: 'Generates API documentation as a collection of files in'
+ ' Markdown format, suitable for example for publishing on a GitHub site.'
});
}
protected onExecute(): Promise<void> { // override
const apiModel: ApiModel = this.buildApiModel();
const markdownDocumenter: MarkdownDocumenter = new MarkdownDocumenter(apiModel, undefined);
markdownDocumenter.generateFiles(this.outputFolder);
return Promise.resolve();
}
}