angular-cn/aio/transforms
Peter Bacon Darwin 6497633529 feat(aio): improve search results functionality
* Ensure that all indexed documents are displayed in the search results.
(Previously the guide documents were not appearing because we only showed
results that had a `name` property, rather than a `name` or `title`.)
* Group the results by their containing folder (e.g. api, guide, tutorial, etc).
* Hide the results when the user hits the ESC key.
* Hide the results when the user clicks on a search result

Closes #14852
2017-03-13 16:55:52 -07:00
..
angular.io-package feat(aio): improve search results functionality 2017-03-13 16:55:52 -07:00
cheatsheet-package build(aio): big move of docs related files (#14361) 2017-02-09 11:58:36 -08:00
content-package build(aio): big move of docs related files (#14361) 2017-02-09 11:58:36 -08:00
examples-package feat(aio): support unannotated JSON example files 2017-02-23 23:23:58 -08:00
helpers build(aio): big move of docs related files (#14361) 2017-02-09 11:58:36 -08:00
links-package build(aio): big move of docs related files (#14361) 2017-02-09 11:58:36 -08:00
rho-package build(aio): big move of docs related files (#14361) 2017-02-09 11:58:36 -08:00
target-package build(aio): big move of docs related files (#14361) 2017-02-09 11:58:36 -08:00
templates build(aio): generate the api-list.json file from the API docs 2017-03-13 16:52:58 -07:00
README.md build(aio): big move of docs related files (#14361) 2017-02-09 11:58:36 -08:00
eslintrc.js build(aio): big move of docs related files (#14361) 2017-02-09 11:58:36 -08:00

README.md

Documentation Generation

The dgeni tool is used to generate the documentation from the source files held in this repository. The documentation generation is configured by a dgeni package defined in docs/angular.io-package/index.js. This package, in turn requires a number of other packages, some are defined locally in the docs folder, such as docs/cheatsheet-package and docs/content-package, etc. And some are brought in from the dgeni-packages node modules, such as jsdoc and nunjucks.

Generating the docs

To generate the documentation simply run gulp docs from the command line.

Testing the dgeni packages

The local packages have unit tests that you can execute by running gulp docs-test from the command line.

What does it generate?

The output from dgeni is written to files in the dist/docs folder.

Notably this includes a partial HTML file for each "page" of the documentation, such as API pages and guides. It also includes JavaScript files that contain metadata about the documentation such as navigation data and keywords for building a search index.

Viewing the docs

You can view the dummy demo app using a simple HTTP server hosting dist/docs/index.html