0.1.4 • Published 6 years ago

docfx-project v0.1.4

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

docfx-project

A NodeJS library for working with DocFX projects and their content.

const project: DocFXProject = await DocFXProject.load('./docs/docfx.json');
const contentFiles: string[] = await project.getContentFiles('.md', '.yml');
const topics: TopicMetadata[] = await project.getTopics();

const progressSubject = new Rx.Subject<string>(
    message => console.log(message),
    error => console.log(error)
);
const topicsWithProgress: TopicMetadata[] = await project.getTopics(progressSubject);

Known issues

Currently, this only supports extracting topic metadata from conceptual (.md) and managed reference (.yml) files; does not support extracting topics from Swagger (.json) files.

0.1.4

6 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago