Files
docs.nestjs.com/tools
Livio 70637c11ed fix: Markdown link render to work with hash
Previously hash links have been escaped (# -> %23) due to routerLink.
Using the href attribute fixes this issue
2020-02-02 21:42:28 +01:00
..
2019-08-13 13:55:32 +02:00

docs.nestjs.com project tooling

This document gives an overview of the tools we use to generate the content for the docs.nestjs.com website.

Transforms

All the content that is rendered by the docs.nestjs.com application, and some of its configuration files, are generated from source files by Dgeni. Dgeni is a general purpose documentation generation tool.

Markdown files in content are processed and transformed into files that are consumed by the docs.nestjs.com web frontend.

dgeni-cli

The dgeni CLI tools/dgeni-cli.ts is wrapper to start a Dgeni package from the command line. We do not take use of the CLI interface provided by the Dgeni package itself, mainly because it does not support TypeScript compilation on the fly.