Files
Allie Sadler 5291295d0d Addition of a 'Contribute' section with our Style Guide (#15350)
* SG test.

* moved some content around

* editing

* broken links fix

* formatting changes

* fixes

* fixes

* edits after review

* fix broken links

* broken link fix

* a few more edits

* removed contributing page

* Revert "removed contributing page"

This reverts commit 5822cd516b.

* add redirect
2022-09-05 10:23:29 +01:00

1.7 KiB

description, title, toc_max
description title toc_max
components and formatting examples used in Docker's docs Lists 3

Examples

  • Bullet list item 1
  • Bullet list item 2
  • Bullet list item 3
  1. Numbered list item 1. Two spaces between the period and the first letter helps with alignment.

  2. Numbered list item 2. Let's put a note in it.

    Note

    : We did it!

  3. Numbered list item 3 with a code block in it. You need the blank line before the code block happens.

    $ docker run hello-world
    
  4. Numbered list item 4 with a bullet list inside it and a numbered list inside that.

    • Sub-item 1
    • Sub-item 2
      1. Sub-sub-item 1
      2. Sub-sub-item-2 with a table inside it because we like to party! Indentation is super important.
        Header 1 Header 2
        Thing 1 Thing 2
        Thing 3 Thing 4

Markdown

- Bullet list item 1
- Bullet list item 2
* Bullet list item 3

1.  Numbered list item 1. Two spaces between the period and the first letter
    helps with alignment.

2.  Numbered list item 2. Let's put a note in it.

    >**Note**: We did it!

3.  Numbered list item 3 with a code block in it. You need the blank line before
    the code block happens.

    ```bash
    $ docker run hello-world
    ```

4.  Numbered list item 4 with a bullet list inside it and a numbered list
    inside that.

    - Sub-item 1
    - Sub-item 2
      1.  Sub-sub-item 1
      2.  Sub-sub-item-2 with a table inside it.
          Indentation is super important.

          |Header 1 | Header 2 |
          |---------|----------|
          | Thing 1 | Thing 2  |
          | Thing 3 | Thing 4  |