gecko-dev/devtools/docs/about-documentation.md
Nicolas Chevobbe 802ec8cc65 Bug 1568472 - Add Gitbook hint plugin. r=jdescottes.
The template is used in one of the page, but the
plugin wasn't installed, so Gitbook would fail
generating the doc.

Differential Revision: https://phabricator.services.mozilla.com/D39156

--HG--
extra : moz-landing-system : lando
2019-07-24 10:38:20 +00:00

908 B

About this documentation

This guide is built with MarkDown files and GitBook.

The source code for this documentation is distributed with the source code for the tools, in the docs/ folder.

If you want to contribute to the documentation, clone the repository, make your changes locally, and then regenerate the book to see how it looks like before submitting a patch:

# Install GitBook locally
npm install -g gitbook-cli

# Go into the docs directory
cd /path/to/mozilla-central/devtools/docs/

# Install plugins
gitbook install

# Generate the docs and start a local server
gitbook serve

# You can now navigate to localhost:4000 in your browser to see the output
open http://localhost:4000 # this would work in MacOS

# Or build the book only (this places the output into `docs/_book`)
gitbook build