angular/aio/tools/transforms
Mladen Jakovljević 9e56e400c5 fix(docs-infra): remove anchor tags from heritage docs (#45287)
Remove anchor tags from heritage docs and let `autoLinkCode` insert them properly.

PR Close #45287
2022-03-08 10:26:49 -08:00
..
angular-api-package refactor(forms): Move FormControl to an overridden exported constructor. (#44316) (#44806) 2022-01-31 22:48:23 +00:00
angular-base-package docs: fix several typos (#44508) 2022-01-04 12:13:46 -08:00
angular-content-package build(docs-infra): move docs-watch settings to a base package (#40479) 2021-01-20 16:12:15 -08:00
angular-errors-package docs: add embedded videos to error guides (#40453) 2021-01-20 08:47:00 -08:00
angular-extended-diagnostics-package fix(docs-infra): track error docs during serve-and-sync (#44704) 2022-01-24 10:41:13 -08:00
angular.io-package fix(docs-infra): track error docs during serve-and-sync (#44704) 2022-01-24 10:41:13 -08:00
authors-package fix(docs-infra): track error docs during serve-and-sync (#44704) 2022-01-24 10:41:13 -08:00
cli-docs-package fix(docs-infra): fix links to CLI commands source code (#44835) 2022-01-28 16:07:47 +00:00
content-package build(docs-infra): implement @reviewed tag definition (#40582) 2021-01-28 09:04:49 -08:00
examples-package refactor(docs-infra): remove eslint directive comments from examples (#43831) 2021-11-09 18:02:33 +00:00
helpers build: update license headers to reference Google LLC (#37205) 2020-05-26 14:26:58 -04:00
links-package build(docs-infra): move docs-watch settings to a base package (#40479) 2021-01-20 16:12:15 -08:00
remark-package build(docs-infra): update remark-html to 13.0.2 (#43435) 2021-09-14 08:29:50 -07:00
target-package build(aio): move the transforms folder into the tools folder 2017-04-16 22:05:23 +01:00
templates fix(docs-infra): remove anchor tags from heritage docs (#45287) 2022-03-08 10:26:49 -08:00
.eslintignore build(aio): move the transforms folder into the tools folder 2017-04-16 22:05:23 +01:00
.eslintrc.js refactor(docs-infra): introduce max-len 120 eslint rule (#43439) 2021-09-15 10:47:35 -07:00
config.js build(aio): ignore example files that are gitignored 2017-06-09 14:33:21 +01:00
README.md docs(docs-infra): apply the one-sentence-per-line rule to Markdown files in aio/tools/ (#38992) 2020-09-30 09:20:00 -04:00
test.js build(docs-infra): ensure that jasmine node tests fail on build error (#41596) 2021-04-13 11:54:15 -07:00

Overview

All the content that is rendered by the AIO 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 /aio/content, code comments in the core Angular source files and example files are processed and transformed into files that are consumed by the AIO application.

Dgeni is configured by "packages", which contain services and processors. Some of these packages are installed as node_modules from the dgeni-packages and some are specific to the AIO project.

The project specific packages are stored in this folder (aio/tools/transforms).

If you are an author and want to know how to generate the documentation, the steps are outlined in the top level README.md.

Root packages

To run Dgeni, you must specify a root package, which acts as the entry point to the documentation generation. This root package, in turn requires a number of other packages, some are defined locally in the tools/transforms folder, such as tools/transforms/cheatsheet-package and tools/transforms/content-package, etc. And some are brought in from the dgeni-packages node modules, such as jsdoc and nunjucks.

  • The primary root package is defined in tools/transforms/angular.io-package/index.js. This package is used to run a full generation of all the documentation.
  • There are also root packages defined in tools/transforms/authors-package/*-package.js. These packages are used by the documentation authors when writing docs, since it allows them to run partial doc generation, which is not complete but is faster for quickly seeing changes to the document that you are working on.

Other packages

  • angular-base-package
  • angular-api-package
  • angular-content-package
  • content-package
  • examples-package
  • links-package
  • post-process-package
  • remark-package
  • target-package

Templates

All the templates for the angular.io dgeni transformations are stoted in the tools/transforms/templates folder. See the README.