This document defines some general styles we adhere to in the docs.
Words are important. Pulumi strives to use language that is clear, harmonious, and friendly to all readers. With these goals in mind, we use the following guidelines:
- Avoid ableist language:
- Instead of crazy try wild.
- Instead of click use select.
- Instead of dummy use placeholder.
- Avoid unnecessarily gendered language: Instead of guys try folks, yall, or everyone.
- Avoid using violent language (e.g., kill).
- Avoid pop-culture references as such references may not be familiar to all readers.
- Instead of "go to," use "navigate".
- Avoid directional words. Instead, link directly to the section you are referencing.
- Avoid using "easy", "simple" or their adjectives, as they make a judgment about the difficulty of a concept explained, or the level of a reader's subject matter expertise. Often, you can omit these words entirely.
- Ensure that readers are able to scan the headings of a page and get an effective overview of the page's content.
- Every page should have exactly one
h1
. - Headings levels should only increment one level at a time. E.g., if your previous heading level was an
h2
, the next heading must be anh2
or anh3
, but not, e.g., anh4
orh5
. - Docs and registry headings should use sentence case (i.e., first letter of the first word of is capitalized).
- Link text should be descriptive and have meaning outside of the surrounding context: Avoid link text like here, click here, see here and instead link to the title of the linked page, e.g. "see Pulumi Pricing". (While this practice benefits all readers, it is of particular importance for visually impaired users who use screen readers and often jump through the links of a document.)
- When changing the URL for an already existing page, add a redirect by using a Hugo alias.
Our docs currently support two kinds of note: info
-level and warning
-level.
- Use notes in general to communicate important information.
- Try to limit the number of notes within a single page.
- Use
info
-level notes to convey general information. - Use
warning
-level notes for information that, if missed, could lead to negative or unexpected consequences.
{{% notes type="info" %}}
This bit of info is important enough to call out, but not critical.
{{% /notes %}}
{{% notes type="warning" %}}
This bit of info is serious. If you missed it, bad things could happen.
{{% /notes %}}
-
Keep paragraphs short, rarely use 4 or more sentences in a single paragraph.
-
When writing paragraphs and long sentences, use one of the following:
- Keep the entire paragraph on a single line and use "soft wrapping" in your IDE/editor.
- Use semantic line breaks to break the paragraph across multiple lines.
Do not "reflow" paragraphs. This causes too much diff noise.
Rationale
There are two aspects to think about with this choice:
- editable: how easy is it to suggest changes to the text
- reviewable: how easy is it to tell what changed
And we have three high-level options:
-
all on one line
This is a pargraph all on one line. This paragraph is easy to edit because you can suggest changes to the whole paragraph in one go. When anything in this paragraph changes, GitHub will highlight which words changed.
-
semantic line breaks
This pargraph uses semantic line breaks. Line breaks are introduced between sentences, and where appropriate, even within sentences. This makes it easy to review and edit individual sentences or clauses. When something in a sentence changes, the lines that follow it don't get touched.
-
reflowed to a fixed maximum line length
This pargraph is split across multiple lines, but it has been run through the editor's reflow function to a maximum line length. This makes it difficult to review because most changes to any sentence will also show the following sentences as changed, and GitHub's word-diff will be less useful there. This is also difficult to edit because suggested changes won't be able to account for reflowing: GitHub's comment box doesn't have reflow support.
In short, only all on one line and semantic line breaks leave the text adequately editable and reviewable.
- Use blockquotes only when directly quoting content from another source.
This is something a person said.
- Present instructional steps in lists.
- Lead with content that excites and engages, end with exactly one call-to-action.
- Try and save links for the last 75% of the content.
- Use headings and lists to make content scannable and consumable.
- Use visuals: code, graphs, videos, architecture diagrams, etc.
- Highlight important points.
- Markdownlint will help enforce syntactically valid Markdown and is available as a CLI tool or as a Visual Studio Code plugin.
- Writing inclusive documentation (Google).