Skip to content

Latest commit

 

History

History
64 lines (44 loc) · 941 Bytes

STYLE.md

File metadata and controls

64 lines (44 loc) · 941 Bytes
title
DevZero docs style guide

DevZero docs style guide

  1. Images should have descriptive alt description

    Wrong:

    ![](image.png)
    

    Correct:

    ![a giraffe](image.png)
    
  2. Prefer code-blocks (```) instead of code-formatting (`) Wrong:

    ssh [email protected]

    Correct:

  3. Shell commands should not have syntax highlighting

    Wrong: ```sh ssh [email protected]

       Correct:
       ```
    ssh [email protected]
    
  4. No bold dot

    Wrong:

    End of sentence.

    Correct:

    End of sentence.

  5. Navigation

    Example:

    Dashboard > Create new recipe

    **Dashboard > Create new recipe**
    
  6. 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.