title |
---|
DevZero docs style guide |
-
Images should have descriptive alt description
Wrong:
![](image.png)
Correct:
![a giraffe](image.png)
-
Prefer code-blocks (```) instead of code-formatting (`) Wrong:
ssh root@example.com
Correct:
ssh root@example.com
-
Shell commands should not have syntax highlighting
Wrong: ```sh ssh root@example.com
Correct: ``` ssh root@example.com
-
No bold dot
Wrong:
End of sentence.
Correct:
End of sentence.
-
Navigation
Example:
Dashboard > Create new recipe
**Dashboard > Create new recipe**
-
Buttons/Dropdowns/Fields
Use respective labels to refer to input elements.
Example: Click on "Create new recipe". Select "Operating System". Type into the "Search" field.