consistently markup commands w/ backticks

This commit is contained in:
Michael Bradley, Jr 2018-08-02 19:12:46 -05:00
parent 8cf7293daf
commit 964210adda

View File

@ -44,9 +44,9 @@ run_embark
``` ```
Review the Review the
[Dockerfile](https://github.com/embark-framework/embark-docker/blob/master/Dockerfile) [`Dockerfile`](https://github.com/embark-framework/embark-docker/blob/master/Dockerfile)
and and
[run.sh](https://github.com/embark-framework/embark-docker/blob/master/run.sh) [`run.sh`](https://github.com/embark-framework/embark-docker/blob/master/run.sh)
for all possible overrides. for all possible overrides.
It's possible to pass additional options to `docker run` by specifying them It's possible to pass additional options to `docker run` by specifying them
@ -109,8 +109,8 @@ run_embark --help
### Utilities ### Utilities
The container comes equipped with The container comes equipped with
[nodeenv](https://github.com/ekalinin/nodeenv) and [`nodeenv`](https://github.com/ekalinin/nodeenv) and
[nvm](https://github.com/creationix/nvm). A `default` Node.js environment is [`nvm`](https://github.com/creationix/nvm). A `default` Node.js environment is
installed via `nodeenv` during image build and placed in installed via `nodeenv` during image build and placed in
`~embark/.local/nodeenv/default`. The `default` environment is automatically `~embark/.local/nodeenv/default`. The `default` environment is automatically
activated by the container's entrypoint. activated by the container's entrypoint.
@ -163,7 +163,7 @@ nac default
#### `micro` #### `micro`
The [micro](https://github.com/zyedidia/micro) editor is installed during image The [`micro`](https://github.com/zyedidia/micro) editor is installed during image
build, should you need to edit files within a running container. build, should you need to edit files within a running container.
#### `install-extras.sh` #### `install-extras.sh`
@ -210,7 +210,7 @@ Bash
can be used to compose scripts without employing an abundance of `&&`, `;`, and can be used to compose scripts without employing an abundance of `&&`, `;`, and
`\`. Just be mindful of umatched quotes and quotes-escaping when building `\`. Just be mindful of umatched quotes and quotes-escaping when building
meta-scripts; in such scenarios, use of meta-scripts; in such scenarios, use of
[envsubst](https://www.gnu.org/software/gettext/manual/html_node/envsubst-Invocation.html) [`envsubst`](https://www.gnu.org/software/gettext/manual/html_node/envsubst-Invocation.html)
is probably called for. is probably called for.
``` shell ``` shell