Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMarcel Amirault <mamirault@gitlab.com>2021-12-13 19:19:14 +0300
committerCraig Norris <cnorris@gitlab.com>2021-12-13 19:19:14 +0300
commitb49d37ffb4e912fb3913918497840a47b13b0e34 (patch)
tree27b09579aceb89864e18210b8e3292d221c0f040 /doc
parentc236df0d3e438d171c662990caf62e696fb2f1c2 (diff)
Apply 4 suggestion(s) to 1 file(s)
Diffstat (limited to 'doc')
-rw-r--r--doc/development.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/development.md b/doc/development.md
index 29287b84..57d2802e 100644
--- a/doc/development.md
+++ b/doc/development.md
@@ -108,7 +108,7 @@ If you would like to track that information, add the following parameters to the
## Add a new product
-To add an additional set of product documentation to docs.gitlab.com from a separate GitLab repository (beyond any product documentation already added to the site):
+To add an additional set of product documentation to <docs.gitlab.com> from a separate GitLab repository (beyond any product documentation already added to the site):
1. Clone the repository at the same root level as the `gitlab-docs` repository:
@@ -116,9 +116,9 @@ To add an additional set of product documentation to docs.gitlab.com from a sepa
git clone https://gitlab.com/<repo>.git <product_name>
```
-1. Edit [`nanoc.yaml`](./nanoc.yaml) and complete the following steps:
+1. Edit [`nanoc.yaml`](../nanoc.yaml) and complete the following steps:
- 1. Add an entry to `data_sources` similar to any other listed entries. For example:
+ 1. Add an entry to `data_sources` similar to the other listed entries. For example:
```yaml
- # Documentation from https://gitlab.com/<repo>
@@ -152,7 +152,7 @@ To add an additional set of product documentation to docs.gitlab.com from a sepa
- `project_dir`: The repository of the product, relative to the `gitlab-docs` repository.
- `content_dir`: The product's documentation directory. This is the same as the `content_dir` defined in `data_sources`.
-1. Edit [`lib/task_helpers.rb`](./lib/task_helpers.rb) and add the `<product_name>` to the `PRODUCTS` variable. For example:
+1. Edit [`lib/task_helpers.rb`](../lib/task_helpers.rb) and add the `<product_name>` to the `PRODUCTS` variable. For example:
```ruby
PRODUCTS = %w[ee omnibus runner charts <product_name>].freeze