-
由 Marcel Amirault 创作于由 Marcel Amirault 创作于
info: For assistance with this Style Guide page, see https://handbook.gitlab.com/handbook/product/ux/technical-writing/#assignments-to-other-projects-and-subjects.
stage: none
group: unassigned
description: 'Writing styles, markup, formatting, and other standards for GitLab Documentation.'
Documentation Style Guide
This document defines the standards for GitLab documentation, including grammar, formatting, and more. For guidelines on specific words, see the word list.
For style questions, mention @tw-style
in an issue or merge request. If you have access to the GitLab Slack workspace,
use the #docs-processes
channel.
The GitLab voice
The GitLab brand guidelines define the voice used by the larger organization.
Building on that guidance, the voice in the GitLab documentation strives to be concise, direct, and precise. The goal is to provide information that's easy to search and scan.
The voice in the documentation should be conversational but brief, friendly but succinct.
Documentation is the single source of truth (SSoT)
The GitLab documentation is the SSoT for all product information related to implementation, use, and troubleshooting. The documentation evolves continuously. It is updated with new products and features, and with improvements for clarity, accuracy, and completeness.
This policy prevents information silos, making it easier to find information about GitLab products. It also informs decisions about the kinds of content included in the documentation.
Topic types
GitLab uses topic types to organize the product documentation.
Topic types help users digest information more quickly. They also help address these issues:
- Content is hard to find. The GitLab docs are comprehensive and include a large amount of useful information. Topic types create repeatable patterns that make the content easier to scan and parse.
- Content is often written from the contributor's point of view. The GitLab docs are written by a variety of contributors. Topic types (tasks, specifically) help put information into a format that is geared toward helping others, rather than documenting how a feature was implemented.
Docs-first methodology
The product documentation should be a complete and trusted resource.
- If the answer to a question exists in documentation, share the link to the documentation instead of rephrasing the information.
- When you encounter information that's not available in GitLab documentation, create a merge request (MR) to add the information to the documentation. Then share the MR to communicate the information.
The more we reflexively add information to the documentation, the more the documentation helps others efficiently accomplish tasks and solve problems.
Writing for localization
The GitLab documentation is not localized, but we follow guidelines that help us write for a global audience.
The GitLab voice dictates that we write clearly and directly with translation in mind. Our style guide, word list, and Vale rules ensure consistency in the documentation.
When documentation is translated into other languages, the meaning of each word must be clear. The increasing use of machine translation, GitLab Duo Chat, and other AI tools means that consistency is even more important.
The following rules can help documentation be translated more efficiently.
Avoid:
- Phrases that hide the subject like there is and there are.
- Ambiguous pronouns like it.
- Words that end in -ing.
- Words that can be confused with one another like since and because.
- Latin abbreviations like e.g. and i.e..
- Culture-specific references like kill two birds with one stone.
Use:
- Standard text for links.
- Lists and tables instead of complex sentences and paragraphs.
- Common abbreviations like AI and CI/CD and abbreviations you've previously spelled out.
Also, keep the following guidance in mind:
- Be consistent with feature names and how to interact with them.
- Break up noun strings. For example, instead of project integration custom settings, use custom settings for project integrations.
- Format dates and times consistently and for an international audience.
- Use illustrations, including screenshots, sparingly.
- For UI text, allow for up to 30% expansion and contraction in translation. To see how much a string expands or contracts in another language, paste the string into Google Translate and review the results. You can ask a colleague who speaks the language to verify if the translation is clear.
Markdown
All GitLab documentation is written in Markdown.
The documentation website uses GitLab Kramdown,
a "flavored" Kramdown engine to render pages from Markdown to HTML. The use of Kramdown
features is limited by our linters, so, use regular Markdown and follow the rules in the
linked style guide. You can't use Kramdown-specific markup (for example, {:.class}
).
For a complete Kramdown reference, see the GitLab Markdown Guide.
The Markdown format is tested by using markdownlint and Vale.
HTML in Markdown
Hard-coded HTML is valid, although it's discouraged from being used. HTML is permitted if:
- There's no equivalent markup in Markdown.
- Advanced tables are necessary.
- Special styling is required.
- Reviewed and approved by a technical writer.
Heading levels in Markdown
Each documentation page begins with a level 1 heading (#
). This becomes the h1
element when
the page is rendered to HTML. There can be only one level 1 heading per page.
- For each subsection, increment the heading level. In other words, increment the number of
#
characters in front of the topic title. - Avoid heading levels greater than
H5
(#####
). If you need more than five heading levels, move the topics to a new page instead. Heading levels greater thanH5
do not display in the right sidebar navigation. - Do not skip a level. For example:
##
>####
. - Leave one blank line before and after the topic title.
- If you use code in topic titles, ensure the code is in backticks.
- Do not use bold text in topic titles.
Backticks in Markdown
Use backticks for:
- Code blocks.
- Error messages.
- Commands, parameters, and filenames.
- Values. For example: "In the Name text box, type
test
."
Language
GitLab documentation should be clear and easy to understand.
- Avoid unnecessary words.
- Be clear, concise, and stick to the goal of the topic.
- Write in US English with US grammar. (Tested in
British.yml
.)
Active voice
In most cases, text is easier to understand and to translate if you use active voice instead of passive.
For example, use:
- The developer writes code for the application.
Instead of:
- Application code is written by the developer.
Sometimes, using GitLab
as the subject can be awkward. For example, GitLab exports the report
.
In this case, you can use passive voice instead. For example, The report is exported
.
Customer perspective
Focus on the functionality and benefits that GitLab brings to customer, rather than what GitLab has created.
For example, use:
- Use merge requests to compare code in the source and target branches.
Instead of:
- GitLab allows you to compare code.
- GitLab created the ability to let you compare code.
- Merge requests let you compare code.
Words that indicate you are not writing from a customer perspective are allow and enable. Try instead to use you and to speak directly to the user.
Building trust
Product documentation should be focused on providing clear, concise information, without the addition of sales or marketing text.
- Do not use words like easily or simply.
- Do not use marketing phrases like "This feature will save you time and money."
Instead, focus on facts and achievable goals. Be specific. For example:
- The build time can decrease when you use this feature.
- You can use this feature to save time when you create a project. The API creates the file and you do not need to manually intervene.
Capitalization
As a company, we tend toward lowercase.
Topic titles
Use sentence case for topic titles. For example:
# Use variables to configure pipelines
## Use the To-Do List
UI text
When referring to specific user interface text, like a button label, page, tab, or menu item, use the same capitalization that's displayed in the user interface.
If you think the user interface text contains style mistakes, create an issue or an MR to propose a change to the user interface text.
Feature names
Feature names should be lowercase.
However, in a few rare cases, features can be title case. These exceptions are:
- Added as a proper name to markdownlint, so they can be consistently applied across all documentation.
- Added to the word list.
If the term is not in the word list, ask a GitLab Technical Writer for advice.
Do not match the capitalization of terms or phrases on the Features page
or features.yml
by default.
Other terms
Capitalize names of:
- GitLab product tiers. For example, GitLab Free and GitLab Ultimate.
- Third-party organizations, software, and products. For example, Prometheus, Kubernetes, Git, and The Linux Foundation.
- Methods or methodologies. For example, Continuous Integration, Continuous Deployment, Scrum, and Agile.
Follow the capitalization style listed at the authoritative source for the entity, which may use non-standard case styles. For example: GitLab and npm.
Fake user information
You may need to include user information in entries such as a REST call or user profile. Do not use real user information or email addresses in GitLab documentation. For email addresses and names, use:
- Email addresses: Use an email address ending in
example.com
. - Names: Use strings like
example_username
. Alternatively, use diverse or non-gendered names with common surnames, such asSidney Jones
,Zhang Wei
, orAlex Garcia
.
Fake URLs
When including sample URLs in the documentation, use:
-
example.com
when the domain name is generic. -
gitlab.example.com
when referring only to self-managed GitLab instances. Usegitlab.com
for GitLab SaaS instances.
Fake tokens
There may be times where a token is needed to demonstrate an API call using cURL or a variable used in CI. It is strongly advised not to use real tokens in documentation even if the probability of a token being exploited is low.
You can use these fake tokens as examples:
Token type | Token value |
---|---|
Personal access token | <your_access_token> |
Application ID | 2fcb195768c39e9a94cec2c2e32c59c0aad7a3365c10892e8116b5d83d4096b6 |
Application secret | 04f294d1eaca42b8692017b426d53bbc8fe75f827734f0260710b83a556082df |
CI/CD variable | Li8j-mLUVA3eZYjPfd_H |
Project runner token | yrnZW46BrtBFqM7xDzE7dddd |
Shared runner token | 6Vk7ZsosqQyfreAxXTZr |
Trigger token | be20d8dcc028677c931e04f3871a9b |
Webhook secret token | 6XhDroRcYPM5by_h-HLY |
Health check token | Tu7BgjR9qeZTEyRzGG2P |
Contractions
Contractions are encouraged, and can create a friendly and informal tone, especially in tutorials, instructional documentation, and user interfaces.
Some contractions, however, should be avoided:
Do not use a contraction | Example | Use instead |
---|---|---|
With a proper noun and a verb | Terraform's a helpful tool. | Terraform is a helpful tool. |
To emphasize a negative | Don't install X with Y. | Do not install X with Y. |
In reference documentation | Don't set a limit. | Do not set a limit. |
In error messages | Requests to localhost aren't allowed. | Requests to localhost are not allowed. |
Possessives
Try to avoid using possessives ('s
) for proper nouns, like organization or product names.
For example, instead of Docker's CLI
, use the Docker CLI
.
For details, see the Google documentation style guide.
Prepositions
Use prepositions at the end of the sentence when needed. Dangling or stranded prepositions are fine. For example:
- You can leave the group you're a member of.
- Share the credentials with users you want to give access to.
These constructions are more casual than the alternatives:
- You can leave the group of which you're a member.
- Share the credentials with users to which you want to give access.
Acronyms
If you use an acronym, spell it out on first use on a page. You do not need to spell it out more than once on a page.
- Titles: Try to avoid acronyms in topic titles, especially if the acronym is not widely used.
-
Plurals: Try not to make acronyms plural. For example, use
YAML files
, notYAMLs
. If you must make an acronym plural, do not use an apostrophe. For example, useAPIs
, notAPI's
. - Possessives: Use caution when making an acronym possessive. If possible, write the sentence to avoid making the acronym possessive. If you must make the acronym possessive, consider spelling out the words.
Numbers
For numbers in text, spell out zero through nine and use numbers for 10 and greater. For more information, see the Microsoft Style Guide.
Text
-
Insert an empty line for new paragraphs.
-
Insert an empty line between different markups (for example, after every paragraph, heading, list, and so on). Example:
## Heading Paragraph. - List item 1 - List item 2
Line length
To make the source content easy to read, and to more easily compare diffs, follow these best practices when possible.
- Split long lines at approximately 100 characters.
- Start each new sentence on a new line.
Comments
To embed comments within Markdown, use standard HTML comments that are not rendered when published. Example:
<!-- This is a comment that is not rendered -->
Emphasis
Use bold rather than italic to provide emphasis. GitLab uses a sans-serif font and italic text does not stand out as much as it would in a serif font. For details, see Butterick's Practical Typography guide on bold or italic.
You can use italics when you are introducing a term for the first time. Otherwise, use bold.
- Use double asterisks (
**
) to mark a word or text in bold (**bold**
). - Use underscore (
_
) for text in italics (_italic_
). - Use greater than (
>
) for blockquotes.
Punctuation
Follow these guidelines for punctuation.
- End full sentences with a period, including full sentences in tables.
- Use serial (Oxford) commas before the final and or or in a list of three or more items. (Tested in
OxfordComma.yml
.)
When spacing content:
- Use one space between sentences. (Use of more than one space is tested in
SentenceSpacing.yml
.) - Do not use non-breaking spaces. Use standard spaces instead. (Tested in
lint-doc.sh
.) - Do not use tabs for indentation. Use spaces instead. You can configure your code editor to output spaces instead of tabs when pressing the Tab key.
Do not use these punctuation characters:
-
;
(semicolon): Use two sentences instead. -
–
(en dash) or—
(em dash): Use separate sentences, or commas, instead. -
“
”
‘
’
: Double or single typographer's ("curly") quotation marks. Use straight quotes instead. (Tested inNonStandardQuotes.yml
.)
Placeholder text
In a code block, you might want to provide a command or configuration that uses specific values.
In these cases, use <
and >
to call out where a reader must replace text with their own value.
For example:
cp <your_source_directory> <your_destination_directory>
If the placeholder is not in a code block, use <
and >
and wrap the placeholder
in a single backtick. For example:
Select **Grant admin consent for `<application_name>`**.
Keyboard commands
Use the HTML <kbd>
tag when referring to keystroke presses. For example:
To stop the command, press <kbd>Control</kbd>+<kbd>C</kbd>.
When the docs are generated, the output is:
To stop the command, press Control+C.
Buttons, tabs, and pages in the UI
For elements with a visible label, use the label in bold with matching case.
For example:
Select **Cancel**.
On the **Issues** page...
On the **Pipelines** tab...
Text entered in the UI
If you want the user to type something in the UI, use backticks. For example:
In the **Commit message** text box, type `This is my merge request`.
Backticks are more precise than quotes. For example, in this string:
- In the Commit message text box, type "This is my merge request."
It's not clear whether the user should include the period in the string.
Inline code
Inline code style is applied inline with regular text. Use inline code style:
- For filenames or fragments of configuration files. For example,
.gitlab-ci.yml
,CODEOWNERS
, andonly: [main]
. - For HTTP methods (
HTTP POST
) and HTTP status codes, both full (404 File Not Found
) and abbreviated (404
). For example: Send aDELETE
request to delete the runner. Send aPOST
request to create one.
To apply inline code style, wrap the text in a single backtick (`
). For example, this is inline code style
.
Code blocks
Code block style separates code text from regular text. Use code block style for commands run in the command-line interface. Code block style is easier to copy and paste in a user's terminal window.
To apply code block style, wrap the text in triple backticks (three `
) and add a syntax highlighting hint. For
example:
```plaintext
This is codeblock style
```
When using code block style:
- Use quadruple backticks (four
`
) to apply code block style when the code block you are styling has triple backticks in it. For example, when illustrating code block style. - Add a blank line above and below code blocks.
- Syntax highlight hints are required for code blocks. See the
list of supported languages and lexers
for available syntax highlighters. Use
plaintext
if no better hint is available.
cURL commands in code blocks
See cURL commands for information about styling cURL commands.
Lists
Use lists to present information in a format that is easier to scan.
-
Make all items in the list parallel. For example, do not start some bullets with nouns and others with verbs.
-
Do not use a period if the phrase is not a full sentence.
-
Use a period after every sentence. Do not use semicolons or commas.
-
Give all items the same punctuation.
-
Start list items with a capital letter.
-
Separate the introductory phrase from explanatory text with a colon (
:
). For example:You can: - Do this thing. - Do this other thing.
Choose between an ordered or unordered list
Use ordered lists for a sequence of steps. For example:
Follow these steps to do something.
1. First, do the first step.
1. Then, do the next step.
1. Finally, do the last step.
Use an unordered lists when the steps do not need to be completed in order. For example:
These things are imported:
- Thing 1
- Thing 2
- Thing 3
List markup
- Use dashes (
-
) for unordered lists instead of asterisks (*
). - Start every item in an ordered list with
1.
. When rendered, the list items are sequential. - Leave a blank line before and after a list.
- Begin a line with spaces (not tabs) to denote a nested sub-item.
Nesting inside a list item
You can nest items under a list item, so they render with the same indentation as the list item. You can do this with:
Nested items should always align with the first character of the list
item. For unordered lists (using -
), use two spaces for each level of
indentation:
- Unordered list item 1
A line nested using 2 spaces to align with the `U` above.
- Unordered list item 2
> A quote block that will nest
> inside list item 2.
- Unordered list item 3
```plaintext
a code block that nests inside list item 3
```
- Unordered list item 4

For ordered lists, use three spaces for each level of indentation:
1. Ordered list item 1
A line nested using 3 spaces to align with the `O` above.
You can nest lists in other lists.
1. Ordered list item one.
1. Ordered list item two.
- Nested unordered list item one.
- Nested unordered list item two.
1. Ordered list item three.
- Unordered list item one.
- Unordered list item two.
1. Nested ordered list item one.
1. Nested ordered list item two.
- Unordered list item three.
Tables
Tables should be used to describe complex information in a straightforward manner. In many cases, an unordered list is sufficient to describe a list of items with a single, simple description per item. But, if you have data that's best described by a matrix, tables are the best choice.
Creation guidelines
To keep tables accessible and scannable, tables should not have any empty cells. If there is no otherwise meaningful value for a cell, consider entering N/A for 'not applicable' or None.
To help keep tables easier to maintain, you can:
-
Add additional spaces to make the column widths consistent. For example:
| App name | Description | Requirements | |----------|---------------------|--------------| | App 1 | Description text 1. | A, B, and C. | | App 2 | Description text 2. | None |
-
Skip the additional spaces in the rightmost column for tables that are very wide. For example:
| Setting | Default | Description | |-----------|---------|-------------| | Setting 1 | `1000` | A short description. | | Setting 2 | `2000` | A long description that would make the table too wide and add too much whitespace if every cell in this column was aligned. | | Setting 3 | `0` | Another short description. |
Editor extensions for table formatting
To ensure consistent table formatting across all Markdown files, consider formatting your tables with the VS Code Markdown Table Formatter. To configure this extension to follow the guidelines above, enable the Follow header row length setting. To enable the setting:
-
In the UI:
- In the VS Code menu, go to Code > Settings > Settings.
- Search for
Limit Last Column Length
. - In the Limit Last Column Length dropdown list, select Follow header row length.
-
In your VS Code
settings.json
, add a new line with:{ "markdown-table-formatter.limitLastColumnLength": "Follow header row length" }
To format a table with this extension, select the entire table, right-click the selection, and select Format Selection With. Select Markdown Table Formatter in the VS Code Command Palette.
Alternatively, if you use Sublime Text you can try the Markdown Table Formatter plugin, but it does not have a Follow header row length setting.
Updates to existing tables
When you add or edit rows in an existing table, the cells in the new rows might be wider. If you realign the columns to account for the width, the diff becomes difficult to read, because the entire table shows as modified.
Markdown tables naturally fall out of alignment over time, but still render correctly
on docs.gitlab.com
. The technical writing team can realign cells the next time
the page is refactored.
Table headers
Use sentence case for table headers. For example, Keyword value
or Project name
.
Feature tables
When creating tables of lists of features (such the features available to each role on the Permissions page), use these phrases:
Option | Markdown | Displayed result |
---|---|---|
No | **{dotted-circle}** No |
{dotted-circle} No |
Yes | **{check-circle}** Yes |
{check-circle} Yes |
Don't use **{dotted-circle}**
and **{check-circle}**
in API documentation.
Instead, follow the API topic template.
Footnotes
Use footnotes below tables only when you cannot include the content in the table itself. For example, use footnotes when you must:
- Provide the same information in several table cells.
- Include content that would disrupt the table's layout.
Footnote format
In the table, use the HTML superscript tag <sup>
for each footnote.
Put the tag at the end of the sentence. Leave one space between the sentence and the tag.
For example:
| App name | Description |
|:---------|:-------------------------------|
| App A | Description text. <sup>1</sup> |
| App B | Description text. <sup>2</sup> |
When you add a footnote, do not re-sort the existing tags in the table.
For the footnotes below the table, use **Footnotes:**
followed by an ordered list.
For example:
**Footnotes:**
1. This is the first footnote.
1. This is the second footnote.
The table and footnotes would render as follows:
App name | Description |
---|---|
App A | Description text. 1 |
App B | Description text. 2 |
Footnotes:
- This is the first footnote.
- This is the second footnote.
Five or more footnotes
If you have five or more footnotes that you cannot include in the table itself,
you can use consecutive numbers for the list items.
If you use consecutive numbers, you must disable Markdown rule 029
:
**Footnotes:**
<!-- Disable ordered list rule https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md029---ordered-list-item-prefix -->
<!-- markdownlint-disable MD029 -->
1. This is the first footnote.
2. This is the second footnote.
3. This is the third footnote.
4. This is the fourth footnote.
5. This is the fifth footnote.
<!-- markdownlint-enable MD029 -->
Quotes
Valid for Markdown content only, not for front matter entries:
- Standard quotes: double quotes (
"
). Example: "This is wrapped in double quotes". - Quote inside a quote: double quotes (
"
) wrap single quotes ('
). Example: "This sentence 'quotes' something in a quote".
For other punctuation rules, refer to the Pajamas Design System Punctuation section. This is overridden by the documentation-specific punctuation rules.
Links
Links help the docs adhere to the single source of truth principle.
However, you should avoid putting too many links on any page. Too many links can hinder readability.
- Do not duplicate links on the same page. For example, on Page A, do not link to Page B multiple times.
- Do not use links in headings. Subheadings are rendered as links, and subheadings that contain links cause errors.
- Avoid multiple links in a single paragraph.
- Avoid multiple links in a single task.
- On any one page, try not to use more than 15 links to other pages.
- Consider using Related topics to reduce links that interrupt the flow of a task.
- Try to avoid anchor links to sections on the same page. Let users rely on the right navigation instead.
Links in the same repository
To link to another documentation (.md
) file in the same repository:
- Use an inline link with a relative file path. For example,
[GitLab.com settings](../user/gitlab_com/index.md)
. - Put the entire link on a single line, even if the link is very long. (Vale rule:
SubstitutionWarning.yml
).
To link to a file outside of the documentation files, for example to link from development documentation to a specific code file, you can:
- Use a full URL. For example:
[`app/views/help/show.html.haml`](https://gitlab.com/gitlab-org/gitlab/-/blob/master/app/views/help/show.html.haml)
- (Optional) Use a full URL with a specific ref. For example:
[`app/views/help/show.html.haml`](https://gitlab.com/gitlab-org/gitlab/-/blob/6d01aa9f1cfcbdfa88edf9d003bd073f1a6fff1d/app/views/help/show.html.haml)
Links in separate repositories
To link to a page in a different repository, use a full URL.
For example, to link from a page in the GitLab repository to the Charts repository,
use a URL like [GitLab Charts documentation](https://docs.gitlab.com/charts/)
.
Anchor links
Each topic title has an anchor link. For example, a topic with the title
## This is an example
has the anchor #this-is-an-example
.
The first topic title on a page (the h1
) has an anchor link,
but do not use it. Link to the page instead.
With Kramdown, you can add a custom ID to an HTML element, but these IDs
don't work in /help
, so you should not use them.
When you change topic title text, the anchor link changes. To avoid broken links:
- Do not use step numbers in topic titles.
- When possible, do not use words that might change in the future.
Changing links and titles
When you change a topic title, the anchor link changes. To ensure you update any related links, search these directories:
doc/*
app/views/*
ee/app/views/*
If you do not fix these links, the ui-docs-lint
job
in your merge request might fail.
Text for links
Follow these guidelines for link text.
Standard text
As much as possible, use text that follows one of these patterns:
-
For more information, see [link text](link.md)
. To [DO THIS THING], see [link text](link.md)
For example:
For more information, see [merge requests](link.md).
To create a review app, see [review apps](link.md).
You can expand on this text by using phrases like
For more information about this feature, see...
Do not use the following constructions:
Learn more about...
-
To read more...
. For more information, see the [Merge requests](link.md) page.
For more information, see the [Merge requests](link.md) documentation.
here
Descriptive text rather than Use descriptive text for links, rather than words like here
or this page.
For example, instead of:
For more information, see [this page](link.md).
For more information, go [here](link.md).
Use:
-
For more information, see [merge requests](link.md)
.
Links to issues
When linking to an issue, include the issue number in the link. For example:
For more information, see [issue 12345](link.md).
Do not use the pound sign (issue #12345
).
Links to external documentation
When possible, avoid links to external documentation. These links can easily become outdated, and are difficult to maintain.
Sometimes links are required. They might clarify troubleshooting steps or help prevent duplication of content. Sometimes they are more precise and will be maintained more actively.
For each external link you add, weigh the customer benefit with the maintenance difficulties.
Confidential or restricted access links
Don't link directly to:
- Confidential issues.
- Internal handbook pages.
- Project features that require special permissions to view.
These links fail for:
- Those without sufficient permissions.
- Automated link checkers.
If you must use one of these links:
- If the link is to a confidential issue or internal handbook page, mention that the issue or page is visible only to GitLab team members.
- If the link requires a specific role or permissions, mention that information.
- Put the link in backticks so that it does not cause link checkers to fail.
Examples:
GitLab team members can view more information in this confidential issue:
`https://gitlab.com/gitlab-org/gitlab/-/issues/<issue_number>`
GitLab team members can view more information in this internal handbook page:
https://internal.gitlab.com/handbook/<link>
Users with the Maintainer role for the project can use the pipeline editor:
`https://gitlab.com/gitlab-org/gitlab/-/ci/editor`
Link to specific lines of code
When linking to specific lines in a file, link to a commit instead of to the branch. Lines of code change over time. Linking to a line by using the commit link ensures the user lands on the line you're referring to. The Permalink button, displayed when viewing a file in a project, provides a link to the most recent commit of that file.
- Do:
[link to line 3](https://gitlab.com/gitlab-org/gitlab/-/blob/11f17c56d8b7f0b752562d78a4298a3a95b5ce66/.gitlab/issue_templates/Feature%20proposal.md#L3)
- Don't:
[link to line 3](https://gitlab.com/gitlab-org/gitlab/-/blob/master/.gitlab/issue_templates/Feature%20proposal.md#L3).
If that linked expression has changed line numbers due to additional commits, you can still search the file for that query. In this case, update the document to ensure it links to the most recent version of the file.
Navigation
When documenting how to navigate the GitLab UI:
- Always use location, then action.
- From the Visibility dropdown list (location), select Public (action).
- Be brief and specific. For example:
- Do: Select Save.
- Do not: Select Save for the changes to take effect.
- If a step must include a reason, start the step with it. This helps the user scan more quickly.
- Do: To view the changes, in the merge request, select the link.
- Do not: Select the link in the merge request to view the changes.